From 215f31ee3dd27f461540384cdba04b58b481fadc Mon Sep 17 00:00:00 2001 From: inmarket Date: Sun, 8 Jul 2018 14:30:31 +1000 Subject: Added type gDelay to replace V2.x delaytime_t Added type gTicks to replace V2.x systemticks_t Added type gThreadreturn to replace V2.x threadreturn_t Added type gThreadpriority to replace V2.x threadpriority_t --- demos/modules/gos/threads_advanced/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/modules/gos/threads_advanced') diff --git a/demos/modules/gos/threads_advanced/main.c b/demos/modules/gos/threads_advanced/main.c index 8527194e..0ae8649c 100644 --- a/demos/modules/gos/threads_advanced/main.c +++ b/demos/modules/gos/threads_advanced/main.c @@ -63,7 +63,7 @@ gfxThreadHandle thd; * Thread function * Prints a message */ -threadreturn_t Thread_function(void* param) +gThreadreturn Thread_function(void* param) { /* Cast the paramter into a gBool pointer so we can use it */ gBool* doExit = (gBool*)param; @@ -75,7 +75,7 @@ threadreturn_t Thread_function(void* param) } /* Don't return anything */ - return (threadreturn_t)0; + return (gThreadreturn)0; } /* -- cgit v1.2.3