[Pcre-svn] [952] code/trunk/sljit: comment fixes

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [952] code/trunk/sljit: comment fixes
Revision: 952
          http://vcs.pcre.org/viewvc?view=rev&revision=952
Author:   zherczeg
Date:     2012-03-16 12:59:30 +0000 (Fri, 16 Mar 2012)


Log Message:
-----------
comment fixes

Modified Paths:
--------------
    code/trunk/sljit/sljitConfig.h
    code/trunk/sljit/sljitUtils.c


Modified: code/trunk/sljit/sljitConfig.h
===================================================================
--- code/trunk/sljit/sljitConfig.h    2012-03-15 07:15:02 UTC (rev 951)
+++ code/trunk/sljit/sljitConfig.h    2012-03-16 12:59:30 UTC (rev 952)
@@ -28,10 +28,17 @@
 #define _SLJIT_CONFIG_H_


 /* --------------------------------------------------------------------- */
+/*  Custom defines                                                       */
+/* --------------------------------------------------------------------- */
+
+/* Put your custom defines here. This empty section will never change
+   which helps maintaining patches (with diff / patch utilities). */
+
+/* --------------------------------------------------------------------- */
 /*  Architecture                                                         */
 /* --------------------------------------------------------------------- */


-/* Architecture selection */
+/* Architecture selection. */
/* #define SLJIT_CONFIG_X86_32 1 */
/* #define SLJIT_CONFIG_X86_64 1 */
/* #define SLJIT_CONFIG_ARM_V5 1 */

Modified: code/trunk/sljit/sljitUtils.c
===================================================================
--- code/trunk/sljit/sljitUtils.c    2012-03-15 07:15:02 UTC (rev 951)
+++ code/trunk/sljit/sljitUtils.c    2012-03-16 12:59:30 UTC (rev 952)
@@ -36,12 +36,12 @@


 static SLJIT_INLINE void allocator_grab_lock(void)
 {
-    // Always successful.
+    /* Always successful. */
 }


 static SLJIT_INLINE void allocator_release_lock(void)
 {
-    // Always successful.
+    /* Always successful. */
 }


#endif /* SLJIT_EXECUTABLE_ALLOCATOR */
@@ -50,12 +50,12 @@

 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_grab_lock(void)
 {
-    // Always successful.
+    /* Always successful. */
 }


 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_release_lock(void)
 {
-    // Always successful.
+    /* Always successful. */
 }


#endif /* SLJIT_UTIL_GLOBAL_LOCK */