X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Flzms-common.c;h=c657ef4aabccd60f58df5c5061b8c2587e8b28d8;hp=a34fb245265bc5dab3013535ec16198aed593cbf;hb=ee4fcdd5c4924803ae67a09fecac7d6b4b8ead6e;hpb=b9320c921af8d8d2ea3ea80c576ca1e4037af049 diff --git a/src/lzms-common.c b/src/lzms-common.c index a34fb245..c657ef4a 100644 --- a/src/lzms-common.c +++ b/src/lzms-common.c @@ -165,17 +165,9 @@ lzms_compute_slots(void) void lzms_init_slots(void) { - static bool done = false; - static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; - - if (unlikely(!done)) { - pthread_mutex_lock(&mutex); - if (!done) { - lzms_compute_slots(); - done = true; - } - pthread_mutex_unlock(&mutex); - } + static pthread_once_t once = PTHREAD_ONCE_INIT; + + pthread_once(&once, lzms_compute_slots); } static s32