Files
itgmania212121/stepmania/src/archutils/Unix/LinuxThreadHelpers.h
T

16 lines
319 B
C
Raw Normal View History

2004-03-12 05:15:32 +00:00
#ifndef PID_THREAD_HELPERS_H
#define PID_THREAD_HELPERS_H
CString ThreadsVersion();
/* Get the current thread's ThreadID. */
int GetCurrentThreadId();
int SuspendThread( int ThreadID );
int ResumeThread( int ThreadID );
struct BacktraceContext;
int GetThreadContext( int ThreadID, BacktraceContext *ctx );
#endif