new venti library.
This commit is contained in:
parent
9df487d720
commit
056fe1ba7f
28 changed files with 4635 additions and 0 deletions
6
src/libventi/queue.h
Normal file
6
src/libventi/queue.h
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
typedef struct Queue Queue;
|
||||
Queue *_vtqalloc(void);
|
||||
int _vtqsend(Queue*, void*);
|
||||
void *_vtqrecv(Queue*);
|
||||
void _vtqhangup(Queue*);
|
||||
void *_vtnbqrecv(Queue*);
|
||||
Loading…
Add table
Add a link
Reference in a new issue