From e470da85f7b9426eea03d66086c2822bf29e9b05 Mon Sep 17 00:00:00 2001 From: rpj Date: Thu, 3 Mar 2011 23:37:20 +0000 Subject: Some cleanups, mostly x86_64 compat plus interlocked macros --- pthread_once.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pthread_once.c') diff --git a/pthread_once.c b/pthread_once.c index 4da54fc..79e4dbc 100644 --- a/pthread_once.c +++ b/pthread_once.c @@ -54,7 +54,7 @@ pthread_once (pthread_once_t * once_control, void (*init_routine) (void)) return EINVAL; } - if (!InterlockedExchangeAdd((LPLONG)&once_control->done, 0)) /* MBR fence */ + if (!PTW32_INTERLOCKED_EXCHANGE_ADD((LPLONG)&once_control->done, 0)) /* MBR fence */ { ptw32_mcs_local_node_t node; -- cgit v1.2.3