Skip to content

Instantly share code, notes, and snippets.

View soubhik-c's full-sized avatar

Soubhik Chakraborty soubhik-c

View GitHub Profile
@soubhik-c
soubhik-c / cf_queue.c
Created November 7, 2019 16:12
aerospike device overload error
int
cf_queue_pop(cf_queue *q, void *buf, int ms_wait)
{
struct timespec tp;
if (ms_wait > 0) {
cf_set_wait_timespec(ms_wait, &tp);
}
cf_queue_lock(q);