1
0
Fork 0
forked from len0rd/rockbox

Implement remove_thread for SDL simulator

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12971 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Steve Bavin 2007-03-30 16:02:42 +00:00
parent a452f73e44
commit 11fa3a871c
2 changed files with 5 additions and 7 deletions

View file

@ -93,3 +93,8 @@ void init_threads(void)
exit(-1);
}
}
void remove_thread(struct thread_entry *thread)
{
SDL_KillThread((SDL_Thread*) thread);
}