Fixed build.

This commit is contained in:
Branimir Karadžić
2017-11-04 16:54:03 -07:00
parent 332a6e0420
commit bd1279e4d2

View File

@@ -6,14 +6,18 @@
#include "test.h"
#include <bx/thread.h>
int32_t threadExit0(void*)
int32_t threadExit0(bx::Thread* _thread, void*)
{
return 0;
BX_UNUSED(_thread);
return bx::kExitSuccess;
}
int32_t threadExit1(void*)
int32_t threadExit1(bx::Thread* _thread, void*)
{
return 1;
BX_UNUSED(_thread);
return bx::kExitFailure;
}
TEST_CASE("thread", "")