Adding THREAD_RETURN macro to GTIMER thread

ugfx_release_2.6
Joel Bodenmann 2015-10-20 20:07:25 +02:00
parent 592ee0f312
commit dcd8e588fc
1 changed files with 2 additions and 1 deletions

View File

@ -109,7 +109,8 @@ static DECLARE_THREAD_FUNCTION(GTimerThreadHandler, arg) {
lastTime = tm;
gfxMutexExit(&mutex);
}
return 0;
THREAD_RETURN(0);
}
void _gtimerInit(void)