summaryrefslogtreecommitdiff
path: root/libjava/include
diff options
context:
space:
mode:
authorkseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-26 17:59:42 +0000
committerkseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-26 17:59:42 +0000
commit33b2495311cce51e96821a0968f44ee30a04dc61 (patch)
tree45c3bb3ae5021c15f5c6b3a990fd245c60414894 /libjava/include
parent357620a14f8d63b53923d50577b1ea773f0379fa (diff)
downloadgcc-33b2495311cce51e96821a0968f44ee30a04dc61.tar.gz
* include/posix-threads.h: Fix coding style aberrations from
2006-06-19 check-in. * posix-threads.cc (_Jv_ThreadDebugSuspend): Ditto. * include/win32-threads.h (_Jv_ThreadDebugSuspend): Ditto. * win32-threads.cc (_Jv_ThreadDebugSuspend): Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115020 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/posix-threads.h6
-rw-r--r--libjava/include/win32-threads.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h
index 41adea3e022..8d69652e9e1 100644
--- a/libjava/include/posix-threads.h
+++ b/libjava/include/posix-threads.h
@@ -378,14 +378,14 @@ void _Jv_ThreadInterrupt (_Jv_Thread_t *data);
// suspend count was zero, i.e., it is not suspended, this function
// will suspend the thread. This function may be used to suspend
// any thread from any other thread (or suspend itself).
-void _Jv_ThreadDebugSuspend (_Jv_Thread_t* data);
+void _Jv_ThreadDebugSuspend (_Jv_Thread_t *data);
// Decreases a thread's suspend count. If the thread's new thread
// count is zero, the thread is resumed. This function may be used
// by any thread to resume any other thread.
-void _Jv_ThreadDebugResume (_Jv_Thread_t* data);
+void _Jv_ThreadDebugResume (_Jv_Thread_t *data);
// Get the suspend count for a thread
-jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_t* data);
+jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data);
#endif /* __JV_POSIX_THREADS__ */
diff --git a/libjava/include/win32-threads.h b/libjava/include/win32-threads.h
index b280b8f3969..27f7b65bf5a 100644
--- a/libjava/include/win32-threads.h
+++ b/libjava/include/win32-threads.h
@@ -197,15 +197,15 @@ HANDLE _Jv_Win32GetInterruptEvent (void);
// suspend count was zero, i.e., it is not suspended, this function
// will suspend the thread. This function may be used to suspend
// any thread from any other thread (or suspend itself).
-void _Jv_ThreadDebugSuspend (_Jv_Thread_t* data);
+void _Jv_ThreadDebugSuspend (_Jv_Thread_t *data);
// Decreases a thread's suspend count. If the thread's new thread
// count is zero, the thread is resumed. This function may be used
// by any thread to resume any other thread.
-void _Jv_ThreadDebugResume (_Jv_Thread_t* data);
+void _Jv_ThreadDebugResume (_Jv_Thread_t *data);
// Get the suspend count for a thread
-jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_t* data);
+jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data);
// Remove defines from <windows.h> that conflict with various things in libgcj code