1 // Copyright (C) 2021 Harry Godden (hgn) - All Rights Reserved
12 typedef unsigned int uint
;
24 #define vg_static_assert _Static_assert
26 #define vg_list_size( A ) (sizeof(A)/sizeof(A[0]))
29 // ==================================================================================================================
31 // Pthred emulation for windows
34 #define MUTEX_TYPE HANDLE
35 #define MUTEX_INITIALIZER NULL
36 #define MUTEX_SETUP(x) (x) = CreateMutex(NULL, FALSE, NULL)
37 #define MUTEX_CLEANUP(x) (CloseHandle(x)) //TODO: Why is this defined but never used?
38 #define MUTEX_LOCK(x) emulate_pthread_mutex_lock(&(x))
39 #define MUTEX_UNLOCK(x) (ReleaseMutex(x))
41 int emulate_pthread_mutex_lock( volatile MUTEX_TYPE
*mx
)
43 if( *mx
== NULL
) /* static initializer? */
45 HANDLE p
= CreateMutex( NULL
, FALSE
, NULL
);
46 if( InterlockedCompareExchangePointer( (PVOID
*)mx
, (PVOID
)p
, NULL
) != NULL
)
50 return WaitForSingleObject( *mx
, INFINITE
) == WAIT_FAILED
;
54 #define MUTEX_LOCK(x) pthread_mutex_lock(&(x))
55 #define MUTEX_UNLOCK(x) pthread_mutex_unlock(&(x))
56 #define MUTEX_TYPE pthread_mutex_t
57 #define MUTEX_INITIALIZER {0}
61 int vg_thread_run( void *pfunc
, void *data
)
65 HANDLE hThread
= CreateThread
67 NULL
, // Thread attributes
68 0, // Stack size (0 = use default)
69 pfunc
, // Thread start address
70 data
, // Parameter to pass to the thread
75 if ( hThread
== NULL
)
77 // Thread creation failed.
78 // More details can be retrieved by calling GetLastError()
83 CloseHandle( hThread
);
90 if( pthread_create( &hThread
, NULL
, pfunc
, data
) )
96 pthread_detach( hThread
);