parent
d503376558
commit
02e49123da
|
@ -252,10 +252,11 @@ error:
|
||||||
*/
|
*/
|
||||||
#ifdef GDB_STUB
|
#ifdef GDB_STUB
|
||||||
void *
|
void *
|
||||||
createThread_gdb( void (*thread_function)( void *data),
|
createThread_gdb(void (*thread_function)(void *data),
|
||||||
void *thread_data) {
|
void *thread_data) {
|
||||||
SDL_Thread *new_thread = SDL_CreateThread( (int (*)(void *data))thread_function,
|
SDL_Thread *new_thread = SDL_CreateThread((int (*)(void *data))thread_function,
|
||||||
thread_data);
|
"gdb-stub",
|
||||||
|
thread_data);
|
||||||
|
|
||||||
return new_thread;
|
return new_thread;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue