summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-02-03 15:00:09 -0800
committerRuss Cox <rsc@golang.org>2009-02-03 15:00:09 -0800
commit124d65ffecab50a08a6010465134b1fd23b4dc4b (patch)
tree7f9cf742ee41e591ba3bc45478eb39884134e95c /include
parent70a901b40029a7ae462b8accfaeeb74b345f3a24 (diff)
downloadgo-124d65ffecab50a08a6010465134b1fd23b4dc4b.tar.gz
libmach:
* heuristic to go farther during stack traces. * significantly improved Linux thread handing. acid: * update to new libmach interface. prof: * use new libmach interface. * multiple thread support (derived from Rob's copy). * first steps toward pprof-like graphs: keep counters indexed by pc,callerpc pairs. R=r DELTA=909 (576 added, 123 deleted, 210 changed) OCL=24240 CL=24259
Diffstat (limited to 'include')
-rw-r--r--include/mach_amd64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mach_amd64.h b/include/mach_amd64.h
index 140240993..3ad0efcbb 100644
--- a/include/mach_amd64.h
+++ b/include/mach_amd64.h
@@ -415,7 +415,7 @@ int ctlproc(int pid, char *msg);
void detachproc(Map *m);
int procnotes(int pid, char ***pnotes);
char* proctextfile(int pid);
-int procthreadpids(int pid, int **thread);
+int procthreadpids(int pid, int *tid, int ntid);
char* procstatus(int);
Maprw fdrw;