summaryrefslogtreecommitdiff
path: root/libjava/win32-threads.cc
diff options
context:
space:
mode:
authorkseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-19 14:10:02 +0000
committerkseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-19 14:10:02 +0000
commit8eaf21c5ad0316f8dd1ad269056c2aab80b31f1b (patch)
treecba1686875bb38c64a587e119f6080157e135309 /libjava/win32-threads.cc
parent650928847696f8967e2b56a88526d117727a9c86 (diff)
downloadgcc-8eaf21c5ad0316f8dd1ad269056c2aab80b31f1b.tar.gz
* include/posix-threads.h (_Jv_ThreadDebugSuspend): Declare.
(_Jv_ThreadDebugResume): Declare. (_Jv_ThreadDebugSuspendCount): Declare. * posix-threads.cc (_Jv_ThreadDebugSuspend): New function. (_Jv_ThreadDebugSuspendCount): New function. (_Jv_ThreadDebugResume): New function. * include/win32-threads.h (_Jv_ThreadDebugSuspend): Declare. (_Jv_ThreadDebugResume): Declare. (_Jv_ThreadDebugSuspendCount): Declare. * win32-threads.cc (_Jv_ThreadDebugSuspend): New function. (_Jv_ThreadDebugSuspendCount): New function. (_Jv_ThreadDebugResume): New function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114769 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/win32-threads.cc')
-rw-r--r--libjava/win32-threads.cc19
1 files changed, 18 insertions, 1 deletions
diff --git a/libjava/win32-threads.cc b/libjava/win32-threads.cc
index 35a16cdb6ac..92b569eef01 100644
--- a/libjava/win32-threads.cc
+++ b/libjava/win32-threads.cc
@@ -1,6 +1,6 @@
// win32-threads.cc - interface between libjava and Win32 threads.
-/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software
+/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2006 Free Software
Foundation, Inc.
This file is part of libgcj.
@@ -419,3 +419,20 @@ _Jv_ThreadInterrupt (_Jv_Thread_t *data)
SetEvent (data->interrupt_event);
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;
+}
+