diff --git a/stepmania/src/arch/Threads/Threads.h b/stepmania/src/arch/Threads/Threads.h index 03f91099b7..2eca122795 100644 --- a/stepmania/src/arch/Threads/Threads.h +++ b/stepmania/src/arch/Threads/Threads.h @@ -17,8 +17,6 @@ public: * one thread. (This means that Win32 thread handles are not acceptable as ThreadIds.) */ virtual uint64_t GetThreadId() const = 0; - virtual uint64_t GetCrashHandle() const { return 0; } - virtual int Wait() = 0; }; diff --git a/stepmania/src/arch/Threads/Threads_Pthreads.h b/stepmania/src/arch/Threads/Threads_Pthreads.h index d17716abd7..8a6195c1c7 100644 --- a/stepmania/src/arch/Threads/Threads_Pthreads.h +++ b/stepmania/src/arch/Threads/Threads_Pthreads.h @@ -35,7 +35,6 @@ public: void Halt( bool Kill ); void Resume(); uint64_t GetThreadId() const; - uint64_t GetCrashHandle() const { return GetThreadId(); } int Wait(); }; diff --git a/stepmania/src/arch/Threads/Threads_Win32.cpp b/stepmania/src/arch/Threads/Threads_Win32.cpp index f4c374d806..5f916801a8 100644 --- a/stepmania/src/arch/Threads/Threads_Win32.cpp +++ b/stepmania/src/arch/Threads/Threads_Win32.cpp @@ -40,11 +40,6 @@ uint64_t ThreadImpl_Win32::GetThreadId() const return (uint64_t) ThreadId; } -uint64_t ThreadImpl_Win32::GetCrashHandle() const -{ - return (uint64_t) ThreadHandle; -} - int ThreadImpl_Win32::Wait() { WaitForSingleObject( ThreadHandle, INFINITE ); diff --git a/stepmania/src/arch/Threads/Threads_Win32.h b/stepmania/src/arch/Threads/Threads_Win32.h index ba1b07cd14..7f095b4531 100644 --- a/stepmania/src/arch/Threads/Threads_Win32.h +++ b/stepmania/src/arch/Threads/Threads_Win32.h @@ -20,7 +20,6 @@ public: void Halt( bool Kill ); void Resume(); uint64_t GetThreadId() const; - uint64_t GetCrashHandle() const; int Wait(); };