plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit a3ad5254ee22b8aeb217a40f4c2fb602a4480906
parent d1b4cfde55d1ba163047cb49b1305452be6f66fc
Author: rsc <devnull@localhost>
Date:   Wed,  9 Jun 2004 14:13:24 +0000

add network routines

Diffstat:
Minclude/thread.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git 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);