src/jdk.packager/share/native/library/common/PlatformThread.h
branchJDK-8200758-branch
changeset 56982 e094d5483bd6
parent 56854 aedce3eaaf17
--- a/src/jdk.packager/share/native/library/common/PlatformThread.h	Fri Oct 12 19:00:51 2018 -0400
+++ b/src/jdk.packager/share/native/library/common/PlatformThread.h	Wed Oct 17 13:50:11 2018 -0400
@@ -30,7 +30,7 @@
 
 #ifdef POSIX
 #include <pthread.h>
-#endif //POSIX
+#endif // POSIX
 
 
 class PlatformThread {
@@ -39,14 +39,15 @@
     HANDLE FHandle;
     DWORD FThreadID;
     static DWORD WINAPI Do(LPVOID lpParam);
-#endif //WINDOWS
+#endif // WINDOWS
 #ifdef POSIX
     pthread_t FHandle;
     static void* Do(void *threadid);
-#endif //POSIX
+#endif // POSIX
 
 protected:
-    // Never call directly. Override this method and this is your code that runs in a thread.
+    // Never call directly. Override this method and this is your code
+    // that runs in a thread.
     virtual void Execute() = 0;
 
 public:
@@ -58,4 +59,4 @@
     void Wait();
 };
 
-#endif //PLATFORMTHREAD_H
+#endif // PLATFORMTHREAD_H