aboutsummaryrefslogtreecommitdiff
path: root/include/thread.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-03-18 18:53:51 +0000
committerrsc <devnull@localhost>2005-03-18 18:53:51 +0000
commit0a89a29f4ecbe046bb8e36ab18b34f5dec5a1352 (patch)
treeb27666f3c862bbf058fe586eb08e26dd1906307e /include/thread.h
parentdfb3977d9cd63dc244a99450125c88d03c7b0acc (diff)
downloadplan9port-0a89a29f4ecbe046bb8e36ab18b34f5dec5a1352.tar.gz
plan9port-0a89a29f4ecbe046bb8e36ab18b34f5dec5a1352.tar.bz2
plan9port-0a89a29f4ecbe046bb8e36ab18b34f5dec5a1352.zip
add threaddata; correct Alt order
Diffstat (limited to 'include/thread.h')
-rw-r--r--include/thread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/thread.h b/include/thread.h
index ffa8fca0..75592ee9 100644
--- a/include/thread.h
+++ b/include/thread.h
@@ -47,6 +47,7 @@ void threaddaemonize(void);
* per proc and thread data
*/
void **procdata(void);
+void **threaddata(void);
/*
* supplied by user instead of main.
@@ -73,8 +74,8 @@ enum
struct Alt
{
- void *v;
Channel *c;
+ void *v;
uint op;
_Thread *thread;
Alt *xalt;