]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
posix-threads.h: Fix coding style aberrations from 2006-06-19 check-in.
authorKeith Seitz <keiths@redhat.com>
Mon, 26 Jun 2006 17:59:42 +0000 (17:59 +0000)
committerKeith Seitz <kseitz@gcc.gnu.org>
Mon, 26 Jun 2006 17:59:42 +0000 (17:59 +0000)
        * 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.

From-SVN: r115020

libjava/ChangeLog
libjava/include/posix-threads.h
libjava/include/win32-threads.h
libjava/posix-threads.cc
libjava/win32-threads.cc

index 5bff6bd1261c7b8155c4f3b7801561c7db5db2ce..d87c1b9bad97c1e005e98df67272370badd02bb0 100644 (file)
@@ -1,3 +1,11 @@
+2006-06-26  Keith Seitz  <keiths@redhat.com>
+
+       * 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.
+
 2006-06-26  Keith Seitz  <keiths@redhat.com>
 
        * include/no-gc.h (_Jv_SuspendThread): Declare.
index 41adea3e0220130c9ba00109696c39d30b421f28..8d69652e9e147c8c2e6e16f4373863dcd7a09f08 100644 (file)
@@ -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_tdata);
+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_tdata);
+void _Jv_ThreadDebugResume (_Jv_Thread_t *data);
 
 // Get the suspend count for a thread
-jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_tdata);
+jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data);
 
 #endif /* __JV_POSIX_THREADS__ */
index b280b8f396925c1568b2d110c3cc887887c7fa4f..27f7b65bf5aefcfb2beb8ebc8b8b07df813f4cdb 100644 (file)
@@ -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_tdata);
+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_tdata);
+void _Jv_ThreadDebugResume (_Jv_Thread_t *data);
 
 // Get the suspend count for a thread
-jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_tdata);
+jint _Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data);
 
 // Remove defines from <windows.h> that conflict with various things in libgcj code
 
index 305b51a50d11a5aa1aa493353d5ec84de97b32b4..7d35e518689cb5b55a512f133c59d294e6b9fc62 100644 (file)
@@ -506,17 +506,17 @@ _Jv_ThreadWait (void)
 }
 
 void
-_Jv_ThreadDebugSuspend (_Jv_Thread_tdata)
+_Jv_ThreadDebugSuspend (_Jv_Thread_t *data)
 {
 }
 
 void
-_Jv_ThreadDebugResume (_Jv_Thread_tdata)
+_Jv_ThreadDebugResume (_Jv_Thread_t *data)
 {
 }
 
 jint
-_Jv_ThreadDebugSuspendCount (_Jv_Thread_tdata)
+_Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data)
 {
   return -1;
 }
index 92b569eef0143677c1d6b636c16174972a0fc25d..e715102f2261a34798edb1bf64719e676369d6b6 100644 (file)
@@ -421,17 +421,17 @@ _Jv_ThreadInterrupt (_Jv_Thread_t *data)
 }
 
 void
-_Jv_ThreadDebugSuspend (_Jv_Thread_tdata)
+_Jv_ThreadDebugSuspend (_Jv_Thread_t *data)
 {
 }
 
 void
-_Jv_ThreadDebugResume (_Jv_Thread_tdata)
+_Jv_ThreadDebugResume (_Jv_Thread_t *data)
 {
 }
 
 jint
-_Jv_ThreadDebugSuspendCount (_Jv_Thread_tdata)
+_Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data)
 {
   return -1;
 }