diff options
author | Keith Seitz <keiths@redhat.com> | 2006-07-21 23:45:03 +0000 |
---|---|---|
committer | Keith Seitz <kseitz@gcc.gnu.org> | 2006-07-21 23:45:03 +0000 |
commit | 303f32ccd7cdf2e5cf1035a56599905ace682dbc (patch) | |
tree | d9fcf70f352ec397fa6065457951b478894479a5 /libjava/win32-threads.cc | |
parent | 2e5757965dee9def53422009da26f51aa243b18d (diff) | |
download | gcc-303f32ccd7cdf2e5cf1035a56599905ace682dbc.zip gcc-303f32ccd7cdf2e5cf1035a56599905ace682dbc.tar.gz gcc-303f32ccd7cdf2e5cf1035a56599905ace682dbc.tar.bz2 |
boehm.cc (_Jv_SuspendThread): Don't ifdef the function declaration, just the contents.
* boehm.cc (_Jv_SuspendThread): Don't ifdef the function declaration,
just the contents.
(_Jv_ResumeThread): Likewise.
* posix-threads.cc: Revert 2006-06-19 _Jv_ThreadDebugSuspend,
_Jv_ThreadDebugResume, _Jv_ThreadDebugSuspendCount patch. Moving
to JVMTI instead.
* include/posix-threads.h: Likewise.
* win32-threads.cc: Likewise.
* include/win32-threads.h: Likewise.
* jvmti.cc (_Jv_JVMTI_SuspentThread): New function.
(_Jv_JVMTI_ResumeThread): New function.
(_Jv_JVMTI_Interface): Define SuspendThread and ResumeThread.
From-SVN: r115655
Diffstat (limited to 'libjava/win32-threads.cc')
-rw-r--r-- | libjava/win32-threads.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libjava/win32-threads.cc b/libjava/win32-threads.cc index e715102..04d2d34 100644 --- a/libjava/win32-threads.cc +++ b/libjava/win32-threads.cc @@ -420,19 +420,3 @@ _Jv_ThreadInterrupt (_Jv_Thread_t *data) LeaveCriticalSection (&data->interrupt_mutex); } -void -_Jv_ThreadDebugSuspend (_Jv_Thread_t *data) -{ -} - -void -_Jv_ThreadDebugResume (_Jv_Thread_t *data) -{ -} - -jint -_Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data) -{ - return -1; -} - |