summaryrefslogtreecommitdiff
path: root/src/pkg/syscall
AgeCommit message (Collapse)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi210-89851/+0
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg136-1281/+11284
2014-03-03Imported Upstream version 1.2.1upstream/1.2.1Michael Stapelberg1-0/+2
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg101-722/+9770
2013-08-13Imported Upstream version 1.1.2upstream/1.1.2Michael Stapelberg3-4/+45
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg26-93/+512
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg120-2774/+16205
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý7-37/+164
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý118-10207/+31179
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý99-0/+35808
2011-09-13Imported Upstream version 60Ondřej Surý96-35491/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý64-2181/+4922
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý38-2311/+4921
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý15-72/+605
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý64-2191/+5445
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý10-31/+64
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý35-593/+1623
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý15-121/+695
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý57-3391/+6230
2010-06-30syscall: add socketpairIvan Krasin9-0/+67
R=rsc CC=golang-dev http://codereview.appspot.com/1319042 Committer: Russ Cox <rsc@golang.org>
2010-06-30io/ioutil.TempFile for WindowsPeter Mundy2-0/+13
Fixes issue 834. R=rsc, brainman CC=golang-dev http://codereview.appspot.com/1686047 Committer: Russ Cox <rsc@golang.org>
2010-06-29time: implement timezones for windowsAlex Brainman3-10/+45
Fixes issue 761. R=PeterGo, adg, rsc CC=golang-dev http://codereview.appspot.com/1121042 Committer: Russ Cox <rsc@golang.org>
2010-06-29net: initial attempt to implement windows versionAlex Brainman5-46/+475
R=rsc, Mateusz Czaplinski CC=golang-dev http://codereview.appspot.com/1600041 Committer: Russ Cox <rsc@golang.org>
2010-06-29syscall: Add syscall_bsd.go to zsycall_freebsd_386.goPeter Mundy1-1/+13
Revision: 5885c9d10f created syscall_bsd.go for code used by Darwin and other *BSDs, which should have included FreeBSD. mksyscall.sh to generate new zsyscall_freebsd_386.go. Fixes issue 862. R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/1701048 Committer: Andrew Gerrand <adg@golang.org>
2010-05-31implement os.FileInfo.*time_ns for windowsAlex Brainman3-9/+14
R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/1145044 Committer: Andrew Gerrand <adg@golang.org>
2010-05-28syscall: windows syscall trace to assist debuggingAlex Brainman1-0/+7
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/1383041 Committer: Russ Cox <rsc@golang.org>
2010-05-27changes &x -> x[0:] for array to slice conversionRuss Cox2-4/+4
R=gri CC=golang-dev http://codereview.appspot.com/1326042
2010-05-24fix build - nacl stubsRuss Cox1-0/+3
TBR=nigeltao CC=golang-dev http://codereview.appspot.com/1259042
2010-05-24fix windows buildAlex Brainman1-0/+11
R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/1209048 Committer: Andrew Gerrand <adg@golang.org>
2010-05-24syscall: update freebsd_amd64Andrew Gerrand2-523/+604
R=rsc, r CC=golang-dev http://codereview.appspot.com/1268041 Committer: Russ Cox <rsc@golang.org>
2010-05-21syscall: add Utimes, Futimes stubs for NaCl - fix buildRuss Cox1-0/+8
TBR=nigeltao CC=golang-dev http://codereview.appspot.com/1262042
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-20syscall: linux, implement BindToDeviceChristopher Wedgwood1-0/+5
R=rsc CC=adg, golang-dev, r http://codereview.appspot.com/1253043 Committer: Russ Cox <rsc@golang.org>
2010-05-20syscall: bsd, stub BindToDeviceChristopher Wedgwood1-0/+9
R=rsc CC=adg, golang-dev, r http://codereview.appspot.com/1257041 Committer: Russ Cox <rsc@golang.org>
2010-05-19syscall: add Utimes on Darwin/FreeBSD, add Futimes everywhereRuss Cox7-10/+62
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 Cox10-442/+662
R=r CC=golang-dev http://codereview.appspot.com/1021043
2010-04-30syscall: handle EOF on pipe - special case on WindowsAlex Brainman2-0/+5
R=rsc CC=golang-dev http://codereview.appspot.com/962046 Committer: Russ Cox <rsc@golang.org>
2010-04-30Add EWOULDBLOCK to sycall_nacl.go.Nigel Tao1-0/+4
R=rsc CC=go-dev, golang-dev http://codereview.appspot.com/1006045
2010-04-29rename GOOS=mingw to GOOS=windowsAlex Brainman9-26/+26
R=rsc, Joe Poirier CC=golang-dev http://codereview.appspot.com/1015043 Committer: Russ Cox <rsc@golang.org>
2010-04-29syscall: force O_LARGEFILE in Linux open system callRuss Cox7-32/+65
Fixes issue 717. R=adg, PeterGo CC=golang-dev http://codereview.appspot.com/1032041
2010-04-29syscall: mingw SleepJoe Poirier2-1/+16
R=rsc, brainman CC=golang-dev http://codereview.appspot.com/961047 Committer: Russ Cox <rsc@golang.org>
2010-04-26syscall: fix mingw buildAlex Brainman1-0/+1
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/988042 Committer: Russ Cox <rsc@golang.org>
2010-04-26os, syscall: more mingwAlex Brainman4-50/+261
R=rsc, rsc1 CC=golang-dev http://codereview.appspot.com/878046 Committer: Russ Cox <rsc@golang.org>
2010-04-22runtime: closures, defer bug fix for Native ClientRuss Cox1-1/+1
Enable package tests for Native Client build. R=r CC=golang-dev http://codereview.appspot.com/957042
2010-04-19syscall: match linux Setsid function signature to darwinAndrew Gerrand4-7/+10
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
2010-04-13os, syscall: mingw bug fixesAlex Brainman1-11/+9
R=rsc CC=golang-dev http://codereview.appspot.com/815044 Committer: Russ Cox <rsc@golang.org>
2010-04-13os: mingw version of Readdir() and Stat() implementedAlex Brainman5-34/+86
R=rsc CC=golang-dev http://codereview.appspot.com/851045 Committer: Russ Cox <rsc@golang.org>
2010-04-06syscall package: document that errno is zeroed on successGiles Lean1-0/+2
This is a documentation enhancement only, without any code change. The rationale for documenting this precisely is that Unix programmers who "know" that errno's value is undefined after a successful system call may be surprised otherwise and search to be sure that a zero errno may be relied upon after successful calls. R=r, rsc1, rsc CC=golang-dev http://codereview.appspot.com/812044 Committer: Russ Cox <rsc@golang.org>
2010-04-02syscall: implementing some mingw syscalls required by os packageAlex Brainman7-26/+537
R=rsc CC=golang-dev http://codereview.appspot.com/770041 Committer: Russ Cox <rsc@golang.org>
2010-03-30syscall: add IPV6 constantsRuss Cox6-1108/+1255
R=r CC=golang-dev http://codereview.appspot.com/848041