OLD | NEW |
(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 } |
OLD | NEW |