summaryrefslogtreecommitdiff
path: root/src/pkg/debug/proc/proc_linux.go
AgeCommit message (Collapse)AuthorFilesLines
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-7/+13
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-15/+14
2010-03-30single argument panic on non-darwin and in commentsRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/800042
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-7/+7
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2010-02-02Change type of Printf's args to ... interface{}Rob Pike1-3/+3
R=rsc CC=golang-dev http://codereview.appspot.com/197043
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-335/+335
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 2nd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/179067
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike1-2/+2
this breaks the dependency of package io on package bytes. R=rsc CC=golang-dev http://codereview.appspot.com/163085
2009-11-24fix for broken build (built-in new was invisible due to a parameter called ↵Robert Griesemer1-6/+6
'new') R=iant http://codereview.appspot.com/160057
2009-11-24Change to container/vector interface:Robert Griesemer1-2/+2
- removed New(len int) in favor of new(Vector).Resize(len, cap) - removed Init(len int) in favor of Resize(len, cap) - runs all.bash Fixes issue 294. R=rsc, r, r1 http://codereview.appspot.com/157143
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer1-1/+1
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1026036
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-100/+100
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-15/+5
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-10-27files that are okay from the last gofmt roundRuss Cox1-16/+8
R=gri http://go/go-review/1015011
2009-10-15Implement error handling on process monitor exit. Now, beforeAustin Clements1-20/+36
sending any message to the monitor, the sender must check a "ready" channel. Before exiting, the monitor records its exit error and closes this channel, ensuring that all later reads from the ready channel will immediately return false. Inspired by http://chplib.wordpress.com/2009/09/30/poison-concurrent-termination/ R=rsc APPROVED=rsc DELTA=47 (27 added, 11 deleted, 9 changed) OCL=35782 CL=35784
2009-10-08more lgtm files from gofmtRuss Cox1-2/+2
R=gri OCL=35485 CL=35488
2009-10-06gofmt on crypto, debugRuss Cox1-81/+80
R=gri DELTA=2560 (127 added, 177 deleted, 2256 changed) OCL=35388 CL=35395
2009-09-15final batch for "declared and not used"Russ Cox1-4/+3
* 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-09-03fix linux 386 buildRuss Cox1-5/+5
R=austin DELTA=140 (128 added, 0 deleted, 12 changed) OCL=34344 CL=34347
2009-09-03Fix uninstalling of breakpoints when a process exits. ProcessAustin Clements1-0/+3
exit is still handled poorly. R=rsc APPROVED=rsc DELTA=6 (6 added, 0 deleted, 0 changed) OCL=34288 CL=34315
2009-09-02fix buildRuss Cox1-0/+2
TBR=gri OCL=34264 CL=34264
2009-09-01import debug/proc from usr/austin/ptraceRuss Cox1-0/+1316
R=austin DELTA=1892 (1892 added, 0 deleted, 0 changed) OCL=34183 CL=34197