summaryrefslogtreecommitdiff
path: root/src/lib/syscall/syscall.go
AgeCommit message (Collapse)AuthorFilesLines
2008-12-09replace assembly casts with unsafe.pointerRuss Cox1-5/+0
R=r DELTA=178 (18 added, 101 deleted, 59 changed) OCL=20822 CL=20826
2008-12-03preparation for exec.Russ Cox1-0/+2
* syscall: add syscall.RawSyscall, which doesn't use sys.entersyscall/sys.exitsyscall add syscall.dup2 add syscall.BytePtrPtr add syscall.Rusage, RusagePtr add syscall.F_GETFD, F_SETFD, FD_CLOEXEC * runtime: clean up, correct signal handling. can now survive (continue running after) a signal. R=r DELTA=394 (286 added, 51 deleted, 57 changed) OCL=20351 CL=20369
2008-09-26move src/syscall to src/lib/syscall.Russ Cox1-0/+31
enforce rule: all kernel data structures and constants go in syscall module. move things that should be in syscall out of net. make net a single package. R=r OCL=15985 CL=15994