X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=include%2Furcu%2Fstatic%2Fwfcqueue.h;h=eae074323479bfc729ad8e06983a38b3407ec316;hp=67ac05ffd15e384dc42317e0d5b4d0c93d71c2d6;hb=34b11dd41c618c0dd29313ad37f05d6a5bca868a;hpb=ceb592f99ca8e4c92bd4fa3fe03d59ff975536bd diff --git a/include/urcu/static/wfcqueue.h b/include/urcu/static/wfcqueue.h index 67ac05f..eae0743 100644 --- a/include/urcu/static/wfcqueue.h +++ b/include/urcu/static/wfcqueue.h @@ -223,6 +223,23 @@ static inline bool _cds_wfcq_enqueue(cds_wfcq_head_ptr_t head, return ___cds_wfcq_append(head, tail, new_tail, new_tail); } +/* + * CDS_WFCQ_WAIT_SLEEP: + * + * By default, this sleeps for the given @msec milliseconds. + * This is a macro which LGPL users may #define themselves before + * including wfcqueue.h to override the default behavior (e.g. + * to log a warning or perform other background work). + */ +#ifndef CDS_WFCQ_WAIT_SLEEP +#define CDS_WFCQ_WAIT_SLEEP(msec) ___cds_wfcq_wait_sleep(msec) +#endif + +static inline void ___cds_wfcq_wait_sleep(int msec) +{ + (void) poll(NULL, 0, msec); +} + /* * ___cds_wfcq_busy_wait: adaptative busy-wait. * @@ -234,7 +251,7 @@ ___cds_wfcq_busy_wait(int *attempt, int blocking) if (!blocking) return 1; if (++(*attempt) >= WFCQ_ADAPT_ATTEMPTS) { - (void) poll(NULL, 0, WFCQ_WAIT); /* Wait for 10ms */ + CDS_WFCQ_WAIT_SLEEP(WFCQ_WAIT); /* Wait for 10ms */ *attempt = 0; } else { caa_cpu_relax();