diff options
author | rsc <devnull@localhost> | 2004-06-09 14:13:24 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-06-09 14:13:24 +0000 |
commit | a3ad5254ee22b8aeb217a40f4c2fb602a4480906 (patch) | |
tree | 7bd4e51699c61b4e0ba05a67b22a61afea188483 | |
parent | d1b4cfde55d1ba163047cb49b1305452be6f66fc (diff) | |
download | plan9port-a3ad5254ee22b8aeb217a40f4c2fb602a4480906.tar.gz plan9port-a3ad5254ee22b8aeb217a40f4c2fb602a4480906.tar.bz2 plan9port-a3ad5254ee22b8aeb217a40f4c2fb602a4480906.zip |
add network routines
-rw-r--r-- | include/thread.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/thread.h b/include/thread.h index 2721fb4e..ce2d73bb 100644 --- a/include/thread.h +++ b/include/thread.h @@ -118,6 +118,10 @@ int threadsetgrp(int); /* set thread group, return old */ void threadsetname(char *fmt, ...); void threadsleep(int); Channel* threadwaitchan(void); +int threadannounce(char*, char*); +int threadlisten(char*, char*); +int threadaccept(int, char*); + int tprivalloc(void); void tprivfree(int); void **tprivaddr(int); |