X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=AcessNative%2Facesskernel_src%2Finclude%2Fthreads_int.h;h=8061f1e9d7f42dafe1849358f25e7ceadf1e8ec5;hb=73b82d524a5b6e9baf2f541bb3fccd4d7e2e94ef;hp=f070a50e4b2549b592d361bfe464eeed45818e67;hpb=11dbd684e9a3d907d43d71a3145205f1a86992fb;p=tpg%2Facess2.git diff --git a/AcessNative/acesskernel_src/include/threads_int.h b/AcessNative/acesskernel_src/include/threads_int.h index f070a50e..8061f1e9 100644 --- a/AcessNative/acesskernel_src/include/threads_int.h +++ b/AcessNative/acesskernel_src/include/threads_int.h @@ -50,7 +50,7 @@ struct sThread tProcess *Process; - Uint32 Events, WaitMask; + Uint32 EventState, WaitMask; void *EventSem; // Should be SDL_sem, but I don't want SDL in this header // Message queue @@ -72,7 +72,7 @@ enum { THREAD_STAT_DEAD, // Awaiting burial (free) THREAD_STAT_BURIED // If it's still on the list here, something's wrong }; -extern tThread *Threads_GetThread(Uint TID); +extern struct sThread *Threads_GetThread(Uint TID); #endif