X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=AcessNative%2Facesskernel_src%2Fthreads.c;h=71fa2941c5fa4852ad05140d457b12cfdd2fdba1;hb=be490e1dd003780a02493a51ebbab1a5225c30d1;hp=a2a58981eb2e44e1059917f6f959e0a733aa0802;hpb=6d32a3c22e659994d7ae6164ba3722ab12d11421;p=tpg%2Facess2.git diff --git a/AcessNative/acesskernel_src/threads.c b/AcessNative/acesskernel_src/threads.c index a2a58981..71fa2941 100644 --- a/AcessNative/acesskernel_src/threads.c +++ b/AcessNative/acesskernel_src/threads.c @@ -50,7 +50,7 @@ typedef struct sProcess int MaxFD; } tProcess; -typedef struct sThread +struct sThread { struct sThread *GlobalNext; struct sThread *Next; @@ -82,7 +82,7 @@ typedef struct sThread Uint32 Events, WaitMask; SDL_sem *EventSem; -} tThread; +}; // === PROTOTYPES === int Threads_Wake(tThread *Thread);