Add cast to fix compile.

This commit is contained in:
Steve Checkoway
2007-05-27 07:44:20 +00:00
parent cf5b998fa7
commit 4765a11d90
@@ -262,12 +262,12 @@ uint64_t GetCurrentThreadId()
int SuspendThread( uint64_t id )
{
return pthread_kill( id, SIGSTOP );
return pthread_kill( pthread_t(id), SIGSTOP );
}
int ResumeThread( uint64_t id )
{
return pthread_kill( id, SIGCONT );
return pthread_kill( pthread_t(id), SIGCONT );
}
#endif