Use DetachThreadLinux wrapper on android
* Fixes a warning - static function being defined but not used. * Just in case any more code is added to DetachThreadLinux, this will go through the same path on both platforms.
This commit is contained in:
parent
4678ca9dac
commit
f2d75f76e5
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ static void DetachThreadLinux(void *)
|
||||||
void OS_CleanupThreadData(void)
|
void OS_CleanupThreadData(void)
|
||||||
{
|
{
|
||||||
#ifdef __ANDROID__
|
#ifdef __ANDROID__
|
||||||
DetachThread();
|
DetachThreadLinux(NULL);
|
||||||
#else
|
#else
|
||||||
int old_cancel_state, old_cancel_type;
|
int old_cancel_state, old_cancel_type;
|
||||||
void *cleanupArg = NULL;
|
void *cleanupArg = NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue