tadd threaddata; correct Alt order - plan9port - [fork] Plan 9 from user space | |
git clone git://src.adamsgaard.dk/plan9port | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 0a89a29f4ecbe046bb8e36ab18b34f5dec5a1352 | |
parent dfb3977d9cd63dc244a99450125c88d03c7b0acc | |
Author: rsc | |
Date: Fri, 18 Mar 2005 18:53:51 +0000 add threaddata; correct Alt order Diffstat: M include/thread.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- | |
diff --git a/include/thread.h b/include/thread.h | |
t@@ -47,6 +47,7 @@ void threaddaemonize(void); * per proc and thread data */ void **procdata(void); +void **threaddata(void); /* * supplied by user instead of main. t@@ -73,8 +74,8 @@ enum struct Alt { - void *v; Channel *c; + void *v; uint op; _Thread *thread; Alt *xalt; |