Concurrent queue in C

from blog Marek's idea of the day, | ↗ original
11 September 201211 September 2012 I needed a queue implementation written in C for one of my ever-experimental projects. The complex part was to make it thread-safe - it was going to be used for exchanging data between threads.I needed a queue implementation written in C for one of my ever-experimental projects. The complex part was to make it thread-safe - it was going to be used for exchanging data between threads. Usually, I'd just take the Usually, I'd just take the doubly linked listdoubly linked list implementation from the implementation from the This is a short summary. ↗ Open original to view full content