summaryrefslogtreecommitdiff
path: root/src/pkg/debug/proc
AgeCommit message (Collapse)AuthorFilesLines
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý4-10/+16
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý6-54/+28
2010-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox1-2/+2
R=gri CC=golang-dev http://codereview.appspot.com/1620042
2010-04-29rename GOOS=mingw to GOOS=windowsAlex Brainman3-2/+2
R=rsc, Joe Poirier CC=golang-dev http://codereview.appspot.com/1015043 Committer: Russ Cox <rsc@golang.org>
2010-04-02debug/proc: fix typo in package documentationRobert Griesemer1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/829044
2010-03-30single argument panic on non-darwin and in commentsRuss Cox3-5/+5
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-04Added mingw specific build stubs.Joe Poirier3-0/+27
R=rsc CC=golang-dev http://codereview.appspot.com/198071 Committer: Russ Cox <rsc@golang.org>
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 Griesemer6-432/+432
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-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-17FreeBSD/i386 workDevon H. O'Dell1-0/+5
This patchset gets Go to pretty much the same state that FreeBSD/amd64 is in. R=rsc http://codereview.appspot.com/157055 Committer: Russ Cox <rsc@golang.org>
2009-11-17FreeBSD-specific porting work.Devon H. O'Dell2-0/+22
cgo/libmach remain unimplemented. However, compilers, runtime, and packages are 100%. I still need to go through and implement missing syscalls (at least make sure they're all listed), but for all shipped functionality, this is done. Ship! ;) R=rsc, VenkateshSrinivas http://codereview.appspot.com/152142 Committer: Russ Cox <rsc@golang.org>
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 Griesemer7-194/+194
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer5-90/+30
- 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-11-05gofmt'ed debugRobert Griesemer3-70/+117
(excluding debug/gosym/symtab.go which has a small issue) R=rsc http://go/go-review/1019001
2009-10-27files that are okay from the last gofmt roundRuss Cox1-16/+8
R=gri http://go/go-review/1015011
2009-10-23all of pkg now compiles, fixes a few more testsKai Backman1-0/+56
go/test: passes 90% (313/345) R=rsc APPROVED=rsc DELTA=90 (83 added, 3 deleted, 4 changed) OCL=36011 CL=36023
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 Cox6-133/+162
R=gri DELTA=2560 (127 added, 177 deleted, 2256 changed) OCL=35388 CL=35395
2009-09-24Switch ogle over to the in-tree debug/proc package. FixAustin Clements1-1/+1
debug/proc to install to the right place. Delete the old ptrace package. The diff looks huge, but it's mostly s/ptrace/proc/. R=rsc APPROVED=rsc DELTA=1940 (10 added, 1835 deleted, 95 changed) OCL=34966 CL=34968
2009-09-22nacl syscall package.Russ Cox2-0/+26
similar tweaks to make debug/proc, net, os build. R=r DELTA=861 (855 added, 4 deleted, 2 changed) OCL=34877 CL=34890
2009-09-17unused importsRuss Cox1-7/+7
R=r OCL=34731 CL=34731
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 Cox2-5/+118
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 Cox2-0/+12
TBR=gri OCL=34264 CL=34264
2009-09-01make debug/proc "build" on more architecturesRuss Cox4-17/+1
R=austin DELTA=17 (0 added, 16 deleted, 1 changed) OCL=34213 CL=34218
2009-09-01import debug/proc from usr/austin/ptraceRuss Cox9-0/+1892
R=austin DELTA=1892 (1892 added, 0 deleted, 0 changed) OCL=34183 CL=34197