diff options
author | rsc <devnull@localhost> | 2003-11-23 18:19:58 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-11-23 18:19:58 +0000 |
commit | 056fe1ba7fa0b70f871dfb9005b24eb8e4cc230b (patch) | |
tree | 9ad42f31c3bc124cf6617cf9eb41dd525eccce83 /src/libventi/queue.h | |
parent | 9df487d720a59bf8cb0dc4ccffc30ad8eb48256a (diff) | |
download | plan9port-056fe1ba7fa0b70f871dfb9005b24eb8e4cc230b.tar.gz plan9port-056fe1ba7fa0b70f871dfb9005b24eb8e4cc230b.tar.bz2 plan9port-056fe1ba7fa0b70f871dfb9005b24eb8e4cc230b.zip |
new venti library.
Diffstat (limited to 'src/libventi/queue.h')
-rw-r--r-- | src/libventi/queue.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libventi/queue.h b/src/libventi/queue.h new file mode 100644 index 00000000..99e08763 --- /dev/null +++ b/src/libventi/queue.h @@ -0,0 +1,6 @@ +typedef struct Queue Queue; +Queue *_vtqalloc(void); +int _vtqsend(Queue*, void*); +void *_vtqrecv(Queue*); +void _vtqhangup(Queue*); +void *_vtnbqrecv(Queue*); |