summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorfuankg <fuankg@13f79535-47bb-0310-9956-ffa450edef68>2011-02-09 12:50:53 +0000
committerfuankg <fuankg@13f79535-47bb-0310-9956-ffa450edef68>2011-02-09 12:50:53 +0000
commit044d23079511b769412fb94d28ee06ec0154d7c4 (patch)
tree89b7abf84e209c3fb22155e1c1b776fe5f5b5d00 /locks
parentc1e77073870195acc643feb0e5980b227d432b1a (diff)
downloadlibapr-044d23079511b769412fb94d28ee06ec0154d7c4.tar.gz
Axed C++ comments.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1068870 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r--locks/os2/proc_mutex.c2
-rw-r--r--locks/os2/thread_cond.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/locks/os2/proc_mutex.c b/locks/os2/proc_mutex.c
index 6655abb60..9b53c0bef 100644
--- a/locks/os2/proc_mutex.c
+++ b/locks/os2/proc_mutex.c
@@ -32,7 +32,7 @@ static char *fixed_name(const char *fname, apr_pool_t *pool)
if (fname == NULL)
semname = NULL;
else {
- // Semaphores don't live in the file system, fix up the name
+ /* Semaphores don't live in the file system, fix up the name */
while (*fname == '/' || *fname == '\\') {
fname++;
}
diff --git a/locks/os2/thread_cond.c b/locks/os2/thread_cond.c
index 97af18765..284bd00f1 100644
--- a/locks/os2/thread_cond.c
+++ b/locks/os2/thread_cond.c
@@ -24,7 +24,7 @@
#include <string.h>
#ifndef DCE_POSTONE
-#define DCE_POSTONE 0x0800 // Post one flag
+#define DCE_POSTONE 0x0800 /* Post one flag */
#endif
static apr_status_t thread_cond_cleanup(void *data)