- 11 Jan, 2011 11 commits
-
-
Rob Pike authored
Such fields are simply ignored. R=rsc, r2 CC=golang-dev https://golang.org/cl/3889043
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/3882042
-
Anthony Martin authored
A few system call numbers on x86 Linux are defined in terms of a previous definition, e.g., #define __NR_timer_create 259 #define __NR_timer_settime (__NR_timer_create+1) ... #define __NR_mq_open 277 #define __NR_mq_unlink (__NR_mq_open+1) This change assumes the numbers are sorted sequentially in the input file. R=rsc, bradfitzwork CC=golang-dev https://golang.org/cl/3946041
-
Ian Lance Taylor authored
Submitting TBR to fix Darwin build. R=rsc TBR=rsc CC=golang-dev https://golang.org/cl/3912043
-
Gustavo Niemeyer authored
Can handle cgo packages now but only if they do not need to set CGO_LDFLAGS and CGO_CFLAGS. R=adg, rsc CC=golang-dev https://golang.org/cl/3891042
-
Rob Pike authored
There were already functions for the standard logger; this just completes the set. R=rsc, adg CC=golang-dev https://golang.org/cl/3901043
-
Ian Lance Taylor authored
R=rsc, iant2, r CC=golang-dev https://golang.org/cl/3886041
-
Russ Cox authored
Fixes #432. R=r, r2 CC=golang-dev https://golang.org/cl/3869043
-
Gustavo Niemeyer authored
This will enable functions which use unsafe.Pointer as an argument to be correctly exported by cgo. R=rsc CC=golang-dev https://golang.org/cl/3849043
-
Gustavo Niemeyer authored
R=rsc CC=golang-dev https://golang.org/cl/3902044
-
Gustavo Niemeyer authored
This change prevents enum consts from conflicting with themselves when loaded twice in different go files. Fixes #1400. R=rsc CC=golang-dev https://golang.org/cl/3849044
-
- 10 Jan, 2011 5 commits
-
-
Robert Griesemer authored
Regular expressions may now be used in conjuction with full text search. Godoc will show the first 10000 occurences in the source code and highlight the respective text segments. - added new flag -testDir to specify a small directory for testing (fast index creation; default = "") - use new FormatText function to format text and Go source code in HTML, supporting multiple kinds of text selections simulatenously); this replaces the uses of go/printer Stylers - for now removed currently unused mechanism for identifier- specific JS popups (will come back in some form once we have type or other useful information) - various typo fixes and minor cleanups throughout Missing: - indexing of non-.go files R=r, r2 CC=golang-dev, rsc https://golang.org/cl/3699041
-
Robert Griesemer authored
Fixes #1285. R=r, rsc, iant, ken2, r2 CC=golang-dev https://golang.org/cl/3918041
-
Ken Thompson authored
R=rsc CC=golang-dev https://golang.org/cl/3913043
-
Roger Peppe authored
The After code is trivially generalisable to provide support for this, and it is possible to use AfterFunc to do things that After cannot, such as waiting for many events at varied times without an overhead of one goroutine per event. R=rsc, r CC=golang-dev https://golang.org/cl/3905041
-
Robert Griesemer authored
- added position information for [ and ] brackets of Index and Slice expression nodes - removed a TODO in go/printer R=r, rsc CC=golang-dev https://golang.org/cl/3867045
-
- 09 Jan, 2011 3 commits
-
-
Peter Mundy authored
Fixes #1401. R=golang-dev, agl1 CC=golang-dev https://golang.org/cl/3937041
-
Eoghan Sherry authored
* correctly ignore obsolete ticks * fix update of next alarm time * tighten alarm channel buffers Fixes #1379. R=r, adg, r2 CC=golang-dev, soul9 https://golang.org/cl/3789045
-
Peter Mundy authored
R=r CC=golang-dev https://golang.org/cl/3907042
-
- 08 Jan, 2011 5 commits
-
-
Ian Lance Taylor authored
If we don't do this, then when C code calls back to Go code which panics, we lose space on the scheduler stack. If that happens a lot, eventually there is no space left on the scheduler stack. R=rsc CC=golang-dev https://golang.org/cl/3898042
-
Adam Langley authored
I needed a way to read lines without worrying about \n and \r\n. R=r, rsc CC=golang-dev https://golang.org/cl/2859041
-
Ken Thompson authored
R=rsc CC=golang-dev https://golang.org/cl/3902042
-
Ken Thompson authored
R=rsc CC=golang-dev https://golang.org/cl/3921041
-
Rob Pike authored
previous version was built with -l32; should be -b32 R=ken CC=golang-dev https://golang.org/cl/3867044
-
- 07 Jan, 2011 8 commits
-
-
Robert Griesemer authored
(e.g.: echo 'package main' | gofmt -r 'x->7' cannot change the package name to 7) R=rsc CC=golang-dev https://golang.org/cl/3913041
-
Rob Pike authored
Not absolutely certain it's right to do this, but since there's no error value coming back, it seems reasonable. Fixes #1392. R=rsc, adg CC=golang-dev https://golang.org/cl/3896042
-
Rob Pike authored
Error check was inverted. Fixes #1396. R=rsc, adg CC=golang-dev https://golang.org/cl/3851042
-
Robert Griesemer authored
Fixes #1384. R=rsc CC=golang-dev https://golang.org/cl/3912041
-
Adam Langley authored
R=rsc CC=golang-dev https://golang.org/cl/3909041
-
Andrew Gerrand authored
R=nigeltao, nigeltao_gnome CC=golang-dev https://golang.org/cl/3892041
-
Andrew Gerrand authored
R=nigeltao, nigeltao_gnome CC=golang-dev https://golang.org/cl/3829043
-
Ian Lance Taylor authored
This permits exporting crosscall2 from the runtime/cgo package. R=rsc CC=golang-dev https://golang.org/cl/3885041
-
- 06 Jan, 2011 6 commits
-
-
Andrew Gerrand authored
R=r, brainman, r2 CC=golang-dev https://golang.org/cl/3881041
-
Russ Cox authored
It's incorrect, and it causes cryptic linker errors. Fixes #1360. R=r, r2 CC=golang-dev https://golang.org/cl/3880041
-
Russ Cox authored
Fixes #1381. R=r, r2 CC=golang-dev https://golang.org/cl/3775050
-
Anthony Martin authored
A cursory reading of the cgo code suggests this should be necessary, though I don't have access to a FreeBSD machine for testing. R=rsc, adg CC=golang-dev https://golang.org/cl/3746047
-
Russ Cox authored
Fixes #1394. R=ken2 CC=golang-dev https://golang.org/cl/3879041
-
Russ Cox authored
Fixes #1389. R=agl1 CC=golang-dev https://golang.org/cl/3827043
-
- 05 Jan, 2011 2 commits
-
-
Kyle Consalus authored
R=rsc, r, r2 CC=golang-dev https://golang.org/cl/3421042
-
Rob Pike authored
Also fix a <p> error in go_spec.html. Fixes #1370. R=rsc, gri CC=golang-dev https://golang.org/cl/3835043
-