summaryrefslogtreecommitdiff
path: root/src/lib/syscall/errstr_linux.go
AgeCommit message (Collapse)AuthorFilesLines
2009-06-01auto-generated, renamed, and deleted filesRuss Cox1-292/+0
associated with CL 29709. R=r DELTA=6444 (3476 added, 2958 deleted, 10 changed) OCL=29710 CL=29724
2009-04-06an early 6g limitation forced the use ofRuss Cox1-1/+1
string(b)[0:n] instead of the more direct string(b[0:n]). convert to the more direct form. R=r DELTA=5 (0 added, 0 deleted, 5 changed) OCL=27082 CL=27140
2009-03-12make 6g constants behave as ken proposes. (i hope.)Russ Cox1-1/+1
various bug fixes and tests involving constants. test/const1.go is the major new test case. R=ken OCL=26216 CL=26224
2009-01-20delete exportRuss Cox1-2/+2
TBR=r OCL=23121 CL=23127
2009-01-16casify syscall and sequelaeRob Pike1-1/+1
R=rsc DELTA=337 (0 added, 1 deleted, 336 changed) OCL=22950 CL=22950
2008-09-26move src/syscall to src/lib/syscall.Russ Cox1-0/+292
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