Skip to content
Snippets Groups Projects
Commit 131affcd authored by rswindell's avatar rswindell
Browse files

Now #includes pthread.h for Unix builds (for POSIX threads and mutexes).

parent af6c0735
Branches
Tags
No related merge requests found
......@@ -121,7 +121,8 @@ extern "C" {
#ifdef __unix__
#include <semaphore.h> /* POSIX 1003.1b semaphores */
#include <pthread.h> /* POSIX threads and mutexes */
#include <semaphore.h> /* POSIX semaphores */
ulong _beginthread(void( *start_address )( void * )
,unsigned stack_size, void *arglist);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment