aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/lock.h
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-20 05:07:21 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-20 05:07:21 +0000
commit7eeda1510b01615d5a22a21094eaf52eba7a4626 (patch)
tree20976b8871ca31277149f3c5efbaa2fac37ec2f9 /include/asterisk/lock.h
parent6f0da283f0e011701e483b6ee5c48b48131f4b4c (diff)
Add some comments to lock.h
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2484 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/lock.h')
-rwxr-xr-xinclude/asterisk/lock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asterisk/lock.h b/include/asterisk/lock.h
index 60d5fe7b0..49636759c 100755
--- a/include/asterisk/lock.h
+++ b/include/asterisk/lock.h
@@ -20,11 +20,11 @@
#define AST_PTHREADT_STOP (pthread_t) -2
#ifdef DEBUG_THREADS
+
#ifdef THREAD_CRASH
#define DO_THREAD_CRASH do { *((int *)(0)) = 1; } while(0)
#endif
-
#include <errno.h>
#include <string.h>
#include <stdio.h>
@@ -164,7 +164,7 @@ static inline int __ast_pthread_mutex_destroy(char *filename, int lineno, char *
#define pthread_mutex_init use_ast_pthread_mutex_init_instead_of_pthread_mutex_init
#define pthread_mutex_destroy use_ast_pthread_mutex_destroy_instead_of_pthread_mutex_destroy
-#else
+#else /* DEBUG_THREADS */
#define AST_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
#ifdef PTHREAD_MUTEX_FAST_NP
@@ -182,7 +182,7 @@ typedef pthread_mutex_t ast_mutex_t;
#define ast_pthread_mutex_init(t,a) pthread_mutex_init(t,a)
#define ast_mutex_destroy(t) pthread_mutex_destroy(t)
-#endif
+#endif /* DEBUG_THREADS */
#endif