summaryrefslogtreecommitdiff
path: root/src/pkg/syscall/zsyscall_linux_386.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+1128
2011-09-13Imported Upstream version 60Ondřej Surý1-1120/+0
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-0/+9
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-0/+72
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-40/+81
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-0/+22
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-85/+337
2010-05-19syscall: add Utimes on Darwin/FreeBSD, add Futimes everywhereRuss Cox1-2/+2
Needed for CL 1103041 and beyond. R=adg, bradfitzpatrick CC=bradfitz, golang-dev http://codereview.appspot.com/1172042
2010-05-03syscall: fix arm build (fix bugs in generator, to add O_LARGEFILE)Russ Cox1-7/+7
R=r CC=golang-dev http://codereview.appspot.com/1021043
2010-04-29syscall: force O_LARGEFILE in Linux open system callRuss Cox1-7/+7
Fixes issue 717. R=adg, PeterGo CC=golang-dev http://codereview.appspot.com/1032041
2010-04-19syscall: match linux Setsid function signature to darwinAndrew Gerrand1-2/+3
SETSID does return an errno - any reason why it has been done this way in zsyscall_linux_* ? Otherwise it should be the same as darwin. From SETSID(2) on my Linux box: ERRORS On error, -1 is returned, and errno is set. Fixes issue 730 R=rsc CC=golang-dev http://codereview.appspot.com/878047
2009-12-151) Change default gofmt default settings forRobert Griesemer1-360/+360
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049
2009-12-13syscall: fix error return bug for 64-bit return on 32-bit platformChristopher Wedgwood1-2/+4
R=dho, rsc CC=r http://codereview.appspot.com/176058 Committer: Russ Cox <rsc@golang.org>
2009-12-04Fix syscall.Statfs and syscall.Fstatfs for 386 GNU/Linux.Ian Lance Taylor1-12/+0
For 386 we use the [f]statfs64 system call, which takes three parameters: the filename, the size of the statfs64 structure, and a pointer to the structure itself. R=rsc http://codereview.appspot.com/166073
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-11/+11
R=rsc, r http://go/go-review/1025029
2009-11-01syscall cleanup.Russ Cox1-18/+18
* rename PORT.sh -> mkall.sh (hopefully more obvious), change behavior: run commands by default. * pull more constants out of #defines automatically, instead of editing large lists by hand. * add Recvfrom, Sendto add os.O_EXCL. R=r http://go/go-review/1017009
2009-10-06apply gofmt to auto-generated syscall filesRuss Cox1-22/+41
R=gri DELTA=4023 (104 added, 27 deleted, 3892 changed) OCL=35416 CL=35418
2009-09-15final batch for "declared and not used"Russ Cox1-110/+110
* update mksyscall.sh and rebuild syscall/z*.go * fix a few linux-only files R=r DELTA=455 (12 added, 1 deleted, 442 changed) OCL=34637 CL=34655
2009-08-13change the names to have .sh suffixes.Rob Pike1-1/+1
also fix the comments in the generated files. R=rsc DELTA=949 (470 added, 465 deleted, 14 changed) OCL=33197 CL=33201
2009-08-12convert non-low-level non-google pkg codeRuss Cox1-4/+1
to whole-package compilation. R=r OCL=33070 CL=33101
2009-07-14Regenerate Linux 386 syscall bindings to add ptrace.Austin Clements1-0/+6
R=rsc APPROVED=rsc DELTA=82 (80 added, 2 deleted, 0 changed) OCL=31610 CL=31612
2009-06-17shuffle some Linux system calls around for 386Russ Cox1-7/+7
R=r DELTA=37 (17 added, 15 deleted, 5 changed) OCL=30428 CL=30444
2009-06-16386 system call fixes:Russ Cox1-139/+130
* use 64-bit file system calls (Linux, Darwin) * use 32-bit [sic] uid/gid calls (Linux) * fix sockets on Linux Darwin/386 works again. Linux/386 is better but must never have worked; there are still bugs surrounding the creation of new threads in the runtime package. R=austin DELTA=1332 (673 added, 614 deleted, 45 changed) OCL=30327 CL=30380
2009-06-09mv src/lib to src/pkgRob Pike1-0/+720
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102