Searched refs:EPOCH_MASK (Results 1 - 1 of 1) sorted by relevance

/netbsd-current/external/bsd/openldap/dist/servers/lloadd/
H A Depoch.c42 #define EPOCH_MASK ( 1 << 2 ) macro
43 #define EPOCH_PREV(epoch) ( ( (epoch) + EPOCH_MASK - 1 ) % EPOCH_MASK )
44 #define EPOCH_NEXT(epoch) ( ( (epoch) + 1 ) % EPOCH_MASK )
55 static uintptr_t epoch_threads[EPOCH_MASK];
56 static struct pending_ref *references[EPOCH_MASK];
64 for ( epoch = 0; epoch < EPOCH_MASK; epoch++ ) {
78 for ( epoch = 0; epoch < EPOCH_MASK; epoch++ ) {
107 for ( epoch = 0; epoch < EPOCH_MASK; epoch++ ) {

Completed in 139 milliseconds