Use uint64_t except where other types are expected.

This commit is contained in:
Steve Checkoway
2004-09-07 12:59:08 +00:00
parent 3dac41c399
commit 7b2ec2cee3
4 changed files with 15 additions and 14 deletions
@@ -9,11 +9,11 @@ int GetCurrentThreadId();
/* Return true if NPTL libraries are in use, false if linuxthreads. */
bool UsingNPTL();
int SuspendThread( int ThreadID );
int ResumeThread( int ThreadID );
int SuspendThread( uint64_t ThreadID );
int ResumeThread( uint64_t ThreadID );
struct BacktraceContext;
int GetThreadContext( int ThreadID, BacktraceContext *ctx );
int GetThreadContext( uint64_t ThreadID, BacktraceContext *ctx );
#endif