This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 #ifndef _QUEUE_H_
2 #define _QUEUE_H_
3
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <pthread.h>
7 #include <string.h>
8 #include "dstm.h"
9
10 void queueInit(void);
11 void * getmemory(int size);
12 void movehead(int size);
13 void * gettail();
14 void inctail();
15 void predealloc();
16 #endif