summaryrefslogtreecommitdiff
path: root/src/lib/syscall/asm_amd64_darwin.s
AgeCommit message (Collapse)AuthorFilesLines
2009-06-01auto-generated, renamed, and deleted filesRuss Cox1-74/+0
associated with CL 29709. R=r DELTA=6444 (3476 added, 2958 deleted, 10 changed) OCL=29710 CL=29724
2008-12-03preparation for exec.Russ Cox1-0/+18
* 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-11-25change meaning of $GOMAXPROCS to number of cpus to use,Russ Cox1-2/+10
not number of threads. can still starve all the other threads, but only by looping, not by waiting in a system call. fix darwin syscall.Syscall6 bug. fix chanclient bug. delete $GOMAXPROCS from network tests. add stripped down printf, sys.printhex to runtime. R=r DELTA=355 (217 added, 36 deleted, 102 changed) OCL=20017 CL=20019
2008-09-26move src/syscall to src/lib/syscall.Russ Cox1-0/+48
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