comparison PrivateQueue.h @ 46:0b3e087a6d37

add cast to remove warning
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Wed, 29 May 2013 16:07:59 +0200
parents 8fcbe46de60a
children
comparison
equal deleted inserted replaced
18:0536743927c2 21:022d9f75f25f
17 #define FALSE 0 17 #define FALSE 0
18 18
19 #define LOCKED 1 19 #define LOCKED 1
20 #define UNLOCKED 0 20 #define UNLOCKED 0
21 21
22 #define DEBUG_PRIVATE_Q 22 //#define DEBUG_PRIVATE_Q
23 23
24 /* It is the data that is shared so only need one mutex. */ 24 /* It is the data that is shared so only need one mutex. */
25 typedef struct 25 typedef struct
26 { void **insertPos; 26 { void **insertPos;
27 void **extractPos; 27 void **extractPos;