Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by JErdin ( 18 years ago )
/* begin - Queue init */
STAILQ_HEAD(stailhead, task_e) task_q =
STAILQ_HEAD_INITIALIZER(task_q);
struct stailhead *headp;
struct task_e {
int socket, x, y;
STAILQ_ENTRY(task_e) entries; /* Tail queue. */
} *n1;
STAILQ_INIT(&task_q); /* Initialize the queue. */
LOG(1,("Initialising queue is donen"));
/* end - Queue init */
Revise this Paste