This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Style fixes 19 Jun check-in


Hi,

I've committed the attached patch which corrects a few style deviations that I checked in last week.

Keith

ChangeLog
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.

Index: include/posix-threads.h
===================================================================
--- include/posix-threads.h	(revision 115018)
+++ include/posix-threads.h	(working copy)
@@ -378,14 +378,14 @@
 // 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__ */
Index: include/win32-threads.h
===================================================================
--- include/win32-threads.h	(revision 115018)
+++ include/win32-threads.h	(working copy)
@@ -197,15 +197,15 @@
 // 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
 
Index: posix-threads.cc
===================================================================
--- posix-threads.cc	(revision 115018)
+++ posix-threads.cc	(working copy)
@@ -506,17 +506,17 @@
 }
 
 void
-_Jv_ThreadDebugSuspend (_Jv_Thread_t* data)
+_Jv_ThreadDebugSuspend (_Jv_Thread_t *data)
 {
 }
 
 void
-_Jv_ThreadDebugResume (_Jv_Thread_t* data)
+_Jv_ThreadDebugResume (_Jv_Thread_t *data)
 {
 }
 
 jint
-_Jv_ThreadDebugSuspendCount (_Jv_Thread_t* data)
+_Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data)
 {
   return -1;
 }
Index: win32-threads.cc
===================================================================
--- win32-threads.cc	(revision 115018)
+++ win32-threads.cc	(working copy)
@@ -421,17 +421,17 @@
 }
 
 void
-_Jv_ThreadDebugSuspend (_Jv_Thread_t* data)
+_Jv_ThreadDebugSuspend (_Jv_Thread_t *data)
 {
 }
 
 void
-_Jv_ThreadDebugResume (_Jv_Thread_t* data)
+_Jv_ThreadDebugResume (_Jv_Thread_t *data)
 {
 }
 
 jint
-_Jv_ThreadDebugSuspendCount (_Jv_Thread_t* data)
+_Jv_ThreadDebugSuspendCount (_Jv_Thread_t *data)
 {
   return -1;
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]