summaryrefslogtreecommitdiff
path: root/src/pkg/syscall/zsyscall_linux_arm.go
AgeCommit message (Collapse)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi1-1885/+0
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg1-7/+8
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg1-0/+31
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg1-82/+413
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý1-14/+14
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-259/+571
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+1210
2011-09-13Imported Upstream version 60Ondřej Surý1-1202/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-1/+1
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-16/+72
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-44/+93
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-112/+368
2010-06-30syscall: add socketpairIvan Krasin1-0/+8
R=rsc CC=golang-dev http://codereview.appspot.com/1319042 Committer: Russ Cox <rsc@golang.org>
2010-05-21syscall: regenerate zsyscall_linux_arm.go - fix buildRuss Cox1-2/+2
R=kaib CC=golang-dev http://codereview.appspot.com/1209047
2010-05-03syscall: fix arm build (fix bugs in generator, to add O_LARGEFILE)Russ Cox1-14/+14
R=r CC=golang-dev http://codereview.appspot.com/1021043
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-399/+399
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-24/+27
R=dho, rsc CC=r http://codereview.appspot.com/176058 Committer: Russ Cox <rsc@golang.org>
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-13/+13
R=rsc, r http://go/go-review/1025029
2009-11-04fixing (badly) linux_arm syscall.Kai Backman1-0/+21
R=rsc http://go/go-review/1017037
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-10-06- moved 3 functions from syscall_linux to _386 and _amd64 (arm lacks them)Kai Backman1-0/+132
- 64 bit OMINUS - added bunch of missing arm syscalls R=rsc APPROVED=rsc DELTA=203 (189 added, 3 deleted, 11 changed) OCL=35412 CL=35414
2009-10-01some progress on arm linux syscall interface. ztypes_linux_armKai Backman1-196/+108
still has problems with godefs. R=rsc APPROVED=rsc DELTA=801 (134 added, 235 deleted, 432 changed) OCL=35189 CL=35211
2009-08-18pkg/sort compiling and some progress on syscall. mostlyKai Backman1-0/+714
re-enabling and massaging code. R=rsc APPROVED=rsc DELTA=2496 (1880 added, 330 deleted, 286 changed) OCL=33487 CL=33504