summaryrefslogtreecommitdiff
path: root/main/lock.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2014-03-24 23:36:36 +0000
committerRichard Mudgett <rmudgett@digium.com>2014-03-24 23:36:36 +0000
commit89e12de79dce4266bba536e7f7290adf36a737f1 (patch)
tree79458695c7a43e36033ce22bdd4d038b8d4121ca /main/lock.c
parent6d81951f0d32385842704b258b0bab500ce6f7be (diff)
locking: Add temporary sanity checks.
Add some temporary sanity checks to hunt for locking problems with the masquerade supertest. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@411073 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/lock.c')
-rw-r--r--main/lock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/lock.c b/main/lock.c
index d66e01b27..0af736f7d 100644
--- a/main/lock.c
+++ b/main/lock.c
@@ -311,6 +311,7 @@ int __ast_pthread_mutex_lock(const char *filename, int lineno, const char *func,
}
#endif /* DEBUG_THREADS */
+ ast_assert(res == 0);/*!< \todo BUGBUG Test to ensure that lock/unlock does not fail. */
return res;
}
@@ -417,6 +418,7 @@ int __ast_pthread_mutex_unlock(const char *filename, int lineno, const char *fun
__ast_mutex_logger("%s line %d (%s): Error: mutex '%s' is uninitialized and unable to initialize.\n",
filename, lineno, func, mutex_name);
}
+ ast_assert(res == 0);/*!< \todo BUGBUG Test to ensure that lock/unlock does not fail. */
return res;
}
#endif /* AST_MUTEX_INIT_W_CONSTRUCTORS */
@@ -477,6 +479,7 @@ int __ast_pthread_mutex_unlock(const char *filename, int lineno, const char *fun
}
#endif /* DEBUG_THREADS */
+ ast_assert(res == 0);/*!< \todo BUGBUG Test to ensure that lock/unlock does not fail. */
return res;
}