remove a check of the result of ast_mutex_lock

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25891 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-05-09 07:28:01 +00:00
parent 4120afc28e
commit 61aaf4dd14
1 changed files with 7 additions and 14 deletions

View File

@ -50,22 +50,15 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
AST_MUTEX_DEFINE_STATIC(monitorlock);
#define LOCK_IF_NEEDED(lock, needed) \
do { \
if (needed) { \
if (ast_mutex_lock(lock)) { \
ast_log(LOG_WARNING, "Unable to lock channel\n"); \
return -1; \
} \
} \
#define LOCK_IF_NEEDED(lock, needed) do { \
if (needed) \
ast_mutex_lock(lock); \
} while(0)
#define UNLOCK_IF_NEEDED(lock, needed) \
do { \
if (needed) { \
ast_mutex_unlock(lock); \
} \
} while(0) \
#define UNLOCK_IF_NEEDED(lock, needed) do { \
if (needed) \
ast_mutex_unlock(lock); \
} while (0)
static unsigned long seq = 0;