Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1319042
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 834.
R=rsc, brainman
CC=golang-dev
http://codereview.appspot.com/1686047
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 761.
R=PeterGo, adg, rsc
CC=golang-dev
http://codereview.appspot.com/1121042
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc, Mateusz Czaplinski
CC=golang-dev
http://codereview.appspot.com/1600041
Committer: Russ Cox <rsc@golang.org>
|
|
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>
|
|
R=golang-dev, adg
CC=golang-dev
http://codereview.appspot.com/1145044
Committer: Andrew Gerrand <adg@golang.org>
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/1383041
Committer: Russ Cox <rsc@golang.org>
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/1326042
|
|
TBR=nigeltao
CC=golang-dev
http://codereview.appspot.com/1259042
|
|
R=golang-dev, adg
CC=golang-dev
http://codereview.appspot.com/1209048
Committer: Andrew Gerrand <adg@golang.org>
|
|
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/1268041
Committer: Russ Cox <rsc@golang.org>
|
|
TBR=nigeltao
CC=golang-dev
http://codereview.appspot.com/1262042
|
|
R=kaib
CC=golang-dev
http://codereview.appspot.com/1209047
|
|
R=rsc
CC=adg, golang-dev, r
http://codereview.appspot.com/1253043
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=adg, golang-dev, r
http://codereview.appspot.com/1257041
Committer: Russ Cox <rsc@golang.org>
|
|
Needed for CL 1103041 and beyond.
R=adg, bradfitzpatrick
CC=bradfitz, golang-dev
http://codereview.appspot.com/1172042
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/1021043
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/962046
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=go-dev, golang-dev
http://codereview.appspot.com/1006045
|
|
R=rsc, Joe Poirier
CC=golang-dev
http://codereview.appspot.com/1015043
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 717.
R=adg, PeterGo
CC=golang-dev
http://codereview.appspot.com/1032041
|
|
R=rsc, brainman
CC=golang-dev
http://codereview.appspot.com/961047
Committer: Russ Cox <rsc@golang.org>
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/988042
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc, rsc1
CC=golang-dev
http://codereview.appspot.com/878046
Committer: Russ Cox <rsc@golang.org>
|
|
Enable package tests for Native Client build.
R=r
CC=golang-dev
http://codereview.appspot.com/957042
|
|
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
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/815044
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/851045
Committer: Russ Cox <rsc@golang.org>
|
|
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>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/770041
Committer: Russ Cox <rsc@golang.org>
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/848041
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/800042
|
|
In this change I'd like to combine the common code that is
present in syscall_darwin.go and syscall_freebsd.go. I
have three reasons for wanting to do this now:
1. reducing code duplication is nearly always good :-)
2. the duplication will get worse if I duplicate this code
a third time for the NetBSD port I'm working on, which
I need to do almost immediately
3. by making this change all in one lump and ignoring any
commonality with the syscall_linux*.go files the diff
is long but, I think, readable
In future it may be possible to cherry pick functions that
also apply to Linux and put them in (say) syscall_unix.go,
and of course some functions may diverge in future and have
to move out to OS or architecture specific files, but today
I want just the low hanging fruit.
Tested and passed on:
Darwin (Snow Leopard, 10.6): amd64 and 386
FreeBSD (8.0-RELEASE): 386 only(*)
(*) All my virtualisation software has stopped playing nice
with FreeBSD for the moment, so I don't have facilities to
test the amd64 port. As the OS X port is OK and the diff
looks all right to my eyes I shall keep my fingers crossed.
If someone with a FreeBSD/amd64 system cares to test and
report I would be appreciative.
2010-03-27 update: I have replaced my virtualisation software, and have working FreeBSD/i386 and FreeBSD/amd64 virtual machines again.
As I hoped (and expected -- programmers are optimists :-) the code built and passed all but the two currently known to fail tests on FreeBSD/amd64. I rechecked FreeBSD/i386 too: same results.
R=rsc
CC=golang-dev
http://codereview.appspot.com/751041
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/739042
Committer: Russ Cox <rsc@golang.org>
|
|
up to date.
No functional change, but when these files are regenerated
they change, leading to noisy diffs when working in the
syscall package.
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/705043
Committer: Russ Cox <rsc@golang.org>
|
|
R=golang-dev, gri
CC=golang-dev
http://codereview.appspot.com/645044
Committer: Robert Griesemer <gri@golang.org>
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/621041
Committer: Russ Cox <rsc@golang.org>
|
|
when there are fewer arguments
R=rsc
CC=golang-dev
http://codereview.appspot.com/622041
Committer: Russ Cox <rsc@golang.org>
|
|
R=golang-dev, r
CC=golang-dev
http://codereview.appspot.com/614042
Committer: Rob Pike <r@golang.org>
|
|
- mkall now generates syscall stabs automatically
- we can call unicode versions of winapi now
- introduce GetErrstr function to fetch error text given errno
- general cleanup
R=rsc
CC=golang-dev
http://codereview.appspot.com/562041
Committer: Russ Cox <rsc@golang.org>
|
|
R=r
CC=giles, golang-dev
http://codereview.appspot.com/600041
|
|
lots of missing parts, but builds and can call dlls, see a sample code in syscall_mingw.go
R=rsc
CC=golang-dev
http://codereview.appspot.com/218042
Committer: Russ Cox <rsc@golang.org>
|
|
- only manual changes are in src/pkg/go/printer/nodes.go
- use a heuristic to determine "outliers" such that not entire composites are
forced to align with them
- improves several places that were not unligned before due too simple heuristic
- unalignes some cases that contain "outliers"
- gofmt -w src misc
Fixes issue 644.
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/241041
|
|
- gofmt -w src misc
- looking for feedback
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/223076
|