summaryrefslogtreecommitdiff
path: root/src/lib/syscall
AgeCommit message (Collapse)AuthorFilesLines
2008-11-19gobuild: add coverage rule, ignore files in package main.Russ Cox1-0/+4
R=r DELTA=55 (41 added, 11 deleted, 3 changed) OCL=19594 CL=19598
2008-11-19leave 6.out around after gotest;Russ Cox1-1/+1
delete it in make clean. R=r DELTA=10 (0 added, 0 deleted, 10 changed) OCL=19542 CL=19581
2008-11-18gobuild changes.Russ Cox1-13/+23
* handles multiple packages per directory * scans directory for files if given no arguments * infers package name * includes test rule invoking gotest R=r DELTA=746 (444 added, 150 deleted, 152 changed) OCL=19504 CL=19521
2008-11-07wrong system call number for statRob Pike1-1/+1
TBR=rsc OCL=18833 CL=18833
2008-10-29update linux for int/int32Russ Cox2-4/+4
R=r DELTA=7 (0 added, 0 deleted, 7 changed) OCL=18050 CL=18069
2008-10-29adapt to new compiler typesRuss Cox1-5/+5
R=r OCL=18024 CL=18024
2008-10-29the end of life as we know itKen Thompson3-4/+4
int is new type R=r OCL=18023 CL=18023
2008-10-09Adding Mkdir.Cary Hull2-0/+16
R=rsc APPROVED=rsc DELTA=21 (21 added, 0 deleted, 0 changed) OCL=16794 CL=16803
2008-10-07update code to follow new semicolon rules:Russ Cox5-113/+113
* 1. all statements and declarations are terminated by semicolons * 2. semicolons can be omitted at top level. * 3. semicolons can be omitted before and after the closing ) or } * on a list of statements or declarations. /home/rsc/bin/addsemi and then diff+tweak. R=r,gri OCL=16620 CL=16643
2008-09-29* implement Linux epoll for polling i/oRuss Cox4-3/+54
* isolate OS-specific polling goop in Pollster type * move generic poll loop out of fd_darwin.go into fd.go R=r DELTA=782 (448 added, 281 deleted, 53 changed) OCL=16108 CL=16119
2008-09-26move src/syscall to src/lib/syscall.Russ Cox19-0/+2393
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