Skip to content

Commit d3c664b

Browse files
committed
plan9: reduce the set of architecture-dependent files on Plan 9
From main repo: https://go-review.googlesource.com/#/c/2167 Change-Id: I2043458a432ccd2aa8b206adc107ac7b215e355f Reviewed-on: https://go-review.googlesource.com/8720 Reviewed-by: Rob Pike <[email protected]>
1 parent 61f8ff3 commit d3c664b

12 files changed

+114
-419
lines changed

plan9/const_plan9.go

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
package plan9
2+
3+
// Plan 9 Constants
4+
5+
// Open modes
6+
const (
7+
O_RDONLY = 0
8+
O_WRONLY = 1
9+
O_RDWR = 2
10+
O_TRUNC = 16
11+
O_CLOEXEC = 32
12+
O_EXCL = 0x1000
13+
)
14+
15+
// Rfork flags
16+
const (
17+
RFNAMEG = 1 << 0
18+
RFENVG = 1 << 1
19+
RFFDG = 1 << 2
20+
RFNOTEG = 1 << 3
21+
RFPROC = 1 << 4
22+
RFMEM = 1 << 5
23+
RFNOWAIT = 1 << 6
24+
RFCNAMEG = 1 << 10
25+
RFCENVG = 1 << 11
26+
RFCFDG = 1 << 12
27+
RFREND = 1 << 13
28+
RFNOMNT = 1 << 14
29+
)
30+
31+
// Qid.Type bits
32+
const (
33+
QTDIR = 0x80
34+
QTAPPEND = 0x40
35+
QTEXCL = 0x20
36+
QTMOUNT = 0x10
37+
QTAUTH = 0x08
38+
QTTMP = 0x04
39+
QTFILE = 0x00
40+
)
41+
42+
// Dir.Mode bits
43+
const (
44+
DMDIR = 0x80000000
45+
DMAPPEND = 0x40000000
46+
DMEXCL = 0x20000000
47+
DMMOUNT = 0x10000000
48+
DMAUTH = 0x08000000
49+
DMTMP = 0x04000000
50+
DMREAD = 0x4
51+
DMWRITE = 0x2
52+
DMEXEC = 0x1
53+
)
54+
55+
const (
56+
STATMAX = 65535
57+
ERRMAX = 128
58+
STATFIXLEN = 49
59+
)

plan9/errors_plan9.go

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Copyright 2011 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package plan9
6+
7+
import "syscall"
8+
9+
// Constants
10+
const (
11+
// Invented values to support what package os expects.
12+
O_CREAT = 0x02000
13+
O_APPEND = 0x00400
14+
O_NOCTTY = 0x00000
15+
O_NONBLOCK = 0x00000
16+
O_SYNC = 0x00000
17+
O_ASYNC = 0x00000
18+
19+
S_IFMT = 0x1f000
20+
S_IFIFO = 0x1000
21+
S_IFCHR = 0x2000
22+
S_IFDIR = 0x4000
23+
S_IFBLK = 0x6000
24+
S_IFREG = 0x8000
25+
S_IFLNK = 0xa000
26+
S_IFSOCK = 0xc000
27+
)
28+
29+
// Errors
30+
var (
31+
EINVAL = syscall.NewError("bad arg in system call")
32+
ENOTDIR = syscall.NewError("not a directory")
33+
EISDIR = syscall.NewError("file is a directory")
34+
ENOENT = syscall.NewError("file does not exist")
35+
EEXIST = syscall.NewError("file already exists")
36+
EMFILE = syscall.NewError("no free file descriptors")
37+
EIO = syscall.NewError("i/o error")
38+
ENAMETOOLONG = syscall.NewError("file name too long")
39+
EINTR = syscall.NewError("interrupted")
40+
EPERM = syscall.NewError("permission denied")
41+
EBUSY = syscall.NewError("no free devices")
42+
ETIMEDOUT = syscall.NewError("connection timed out")
43+
EPLAN9 = syscall.NewError("not supported by plan 9")
44+
45+
// The following errors do not correspond to any
46+
// Plan 9 system messages. Invented to support
47+
// what package os and others expect.
48+
EACCES = syscall.NewError("access permission denied")
49+
EAFNOSUPPORT = syscall.NewError("address family not supported by protocol")
50+
)

plan9/syscall_plan9.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,12 @@ func Fd2path(fd int) (path string, err error) {
136136
return cstring(buf[:]), nil
137137
}
138138

139-
//sys pipe(p *[2]_C_int) (err error)
139+
//sys pipe(p *[2]int32) (err error)
140140
func Pipe(p []int) (err error) {
141141
if len(p) != 2 {
142142
return syscall.ErrorString("bad arg in system call")
143143
}
144-
var pp [2]_C_int
144+
var pp [2]int32
145145
err = pipe(&pp)
146146
p[0] = int(pp[0])
147147
p[1] = int(pp[1])

plan9/types_plan9.c

-115
This file was deleted.

plan9/zerrors_plan9_386.go

-50
This file was deleted.

plan9/zerrors_plan9_amd64.go

-50
This file was deleted.

plan9/zsyscall_plan9_386.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func fd2path(fd int, buf []byte) (err error) {
2323

2424
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
2525

26-
func pipe(p *[2]_C_int) (err error) {
26+
func pipe(p *[2]int32) (err error) {
2727
r0, _, e1 := Syscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)
2828
if int32(r0) == -1 {
2929
err = e1

plan9/zsyscall_plan9_amd64.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func fd2path(fd int, buf []byte) (err error) {
2323

2424
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
2525

26-
func pipe(p *[2]_C_int) (err error) {
26+
func pipe(p *[2]int32) (err error) {
2727
r0, _, e1 := Syscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)
2828
if int32(r0) == -1 {
2929
err = e1

plan9/zsysnum_plan9_amd64.go plan9/zsysnum_plan9.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mksysnum_plan9.sh /media/sys/src/libc/9syscall/sys.h
1+
// mksysnum_plan9.sh /opt/plan9/sys/src/libc/9syscall/sys.h
22
// MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
33

44
package plan9

0 commit comments

Comments
 (0)