Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1)

Side by Side Diff: src/pkg/syscall/zsyscall_nacl_amd64p32.go

Issue 68150047: all: merge NaCl branch (part 1)
Patch Set: diff -r 737d232b573b ssh://hg@bitbucket.org/davecheney/go.nacl Created 11 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/syscall/zsyscall_nacl_386.go ('k') | src/pkg/time/sys_unix.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // mksyscall.pl -nacl syscall_nacl.go syscall_nacl_amd64p32.go
2 // MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
3
4 package syscall
5
6 import "unsafe"
7
8 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
9
10 func naclClose(fd int) (err error) {
11 _, _, e1 := Syscall(sys_close, uintptr(fd), 0, 0)
12 if e1 != 0 {
13 err = e1
14 }
15 return
16 }
17
18 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
19
20 func Exit(code int) (err error) {
21 _, _, e1 := Syscall(sys_exit, uintptr(code), 0, 0)
22 if e1 != 0 {
23 err = e1
24 }
25 return
26 }
27
28 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
29
30 func naclFstat(fd int, stat *Stat_t) (err error) {
31 _, _, e1 := Syscall(sys_fstat, uintptr(fd), uintptr(unsafe.Pointer(stat) ), 0)
32 if e1 != 0 {
33 err = e1
34 }
35 return
36 }
37
38 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
39
40 func naclRead(fd int, b []byte) (n int, err error) {
41 var _p0 unsafe.Pointer
42 if len(b) > 0 {
43 _p0 = unsafe.Pointer(&b[0])
44 } else {
45 _p0 = unsafe.Pointer(&_zero)
46 }
47 r0, _, e1 := Syscall(sys_read, uintptr(fd), uintptr(_p0), uintptr(len(b) ))
48 n = int(r0)
49 if e1 != 0 {
50 err = e1
51 }
52 return
53 }
54
55 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
56
57 func naclSeek(fd int, off *int64, whence int) (err error) {
58 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)) , uintptr(whence))
59 if e1 != 0 {
60 err = e1
61 }
62 return
63 }
OLDNEW
« no previous file with comments | « src/pkg/syscall/zsyscall_nacl_386.go ('k') | src/pkg/time/sys_unix.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b