Skip to content

Commit d2a8d92

Browse files
authored
OGC SDL_systhread: Added missing SDL_SYS_DetachThread (#62)
1 parent 853b3d6 commit d2a8d92

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/thread/ogc/SDL_systhread.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ void SDL_SYS_WaitThread(SDL_Thread *thread)
8080
return;
8181
}
8282

83+
void SDL_SYS_DetachThread(SDL_Thread *thread)
84+
{
85+
/* Do nothing. */
86+
thread->handle = LWP_THREAD_NULL;
87+
}
88+
8389
void SDL_SYS_KillThread(SDL_Thread *thread)
8490
{
8591
return;

0 commit comments

Comments
 (0)