diff options
author | Russ Cox <rsc@swtch.com> | 2009-04-30 08:00:40 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2009-04-30 08:00:40 -0700 |
commit | 9ea7f9d82f3b929853016ccd12dfd5c044e95d07 (patch) | |
tree | 92ad233b3fde44e252834e6d391d02e281cd633c /include | |
parent | 4aad1a325813fa6eed5d29d5dd31f18eae1f006d (diff) | |
download | plan9port-9ea7f9d82f3b929853016ccd12dfd5c044e95d07.tar.gz plan9port-9ea7f9d82f3b929853016ccd12dfd5c044e95d07.tar.bz2 plan9port-9ea7f9d82f3b929853016ccd12dfd5c044e95d07.zip |
libthread: remove unimplemented chaninit
Diffstat (limited to 'include')
-rw-r--r-- | include/thread.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/thread.h b/include/thread.h index 739fe0fe..43c35bf3 100644 --- a/include/thread.h +++ b/include/thread.h @@ -107,7 +107,6 @@ struct Channel int chanalt(Alt *alts); Channel* chancreate(int elemsize, int elemcnt); void chanfree(Channel *c); -int chaninit(Channel *c, int elemsize, int elemcnt); int channbrecv(Channel *c, void *v); void* channbrecvp(Channel *c); ulong channbrecvul(Channel *c); |