summaryrefslogtreecommitdiff
path: root/src/lib/syscall/socket_linux.go
AgeCommit message (Collapse)AuthorFilesLines
2009-06-01auto-generated, renamed, and deleted filesRuss Cox1-123/+0
associated with CL 29709. R=r DELTA=6444 (3476 added, 2958 deleted, 10 changed) OCL=29710 CL=29724
2009-05-14fix abstract unix domain socketsRob Pike1-1/+2
R=rsc DELTA=5 (3 added, 0 deleted, 2 changed) OCL=28845 CL=28849
2009-05-13Unix domain socket support, Linux and Darwin.Russ Cox1-5/+0
R=r DELTA=534 (353 added, 99 deleted, 82 changed) OCL=28783 CL=28783
2009-05-07next step for 6.out on Borg: fix and testRuss Cox1-0/+7
net code on IPv4-only machines. R=r DELTA=27 (25 added, 0 deleted, 2 changed) OCL=28404 CL=28411
2009-03-06document Conn interface better, in preparationRuss Cox1-1/+1
for per-method interface documentation by mkdoc.pl. implement timeouts on network reads and use them in dns client. also added locks on i/o to ensure writes are not interlaced. R=r DELTA=340 (272 added, 25 deleted, 43 changed) OCL=25799 CL=25874
2009-01-20delete exportRuss Cox1-25/+25
TBR=r OCL=23121 CL=23127
2009-01-16casify syscall and sequelaeRob Pike1-25/+25
R=rsc DELTA=337 (0 added, 1 deleted, 336 changed) OCL=22950 CL=22950
2008-12-18convert *[] to [].Russ Cox1-1/+1
R=r OCL=21563 CL=21571
2008-12-09replace assembly casts with unsafe.pointerRuss Cox1-9/+12
R=r DELTA=178 (18 added, 101 deleted, 59 changed) OCL=20822 CL=20826
2008-10-29update linux for int/int32Russ Cox1-3/+3
R=r DELTA=7 (0 added, 0 deleted, 7 changed) OCL=18050 CL=18069
2008-10-29the end of life as we know itKen Thompson1-1/+1
int is new type R=r OCL=18023 CL=18023
2008-10-07update code to follow new semicolon rules:Russ Cox1-5/+5
* 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 Cox1-1/+19
* 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 Cox1-0/+99
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