Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 225 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 225 Bytes

How does it work?

char* obj = strdup("test");

void *q = llqueue_new();

llqueue_offer(q, obj);

printf("object from queue: %s\n", llqueue_poll(q));

Building

$make

Todo

  • Make lockfree variant using CAS