From 6ca1cc935c519b0bd8e4f233470d95a44b76bd73 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 11 Jun 2004 07:06:48 +0000 Subject: [PATCH] implement Threads_Pthreads::GetCrashHandle --- stepmania/src/arch/Threads/Threads_Pthreads.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/arch/Threads/Threads_Pthreads.h b/stepmania/src/arch/Threads/Threads_Pthreads.h index 52503e2cc3..d0ed136d09 100644 --- a/stepmania/src/arch/Threads/Threads_Pthreads.h +++ b/stepmania/src/arch/Threads/Threads_Pthreads.h @@ -32,6 +32,7 @@ public: void Halt( bool Kill ); void Resume(); uint64_t GetThreadId() const; + uint64_t GetCrashHandle() const { return GetThreadId(); } int Wait(); };