d8a751fdaca5dd9db5082053c2090e1fa7058d12
[IRC.git] / Robust / src / Runtime / DSTM / interface / queue.h
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
9 void queueInit(void);
10 void * getmemory(int size);
11 void movehead(int size);
12 void * gettail();
13 void inctail();
14 void predealloc();
15 #endif