summaryrefslogtreecommitdiff
path: root/res/res_monitor.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-05-09 07:28:01 +0000
committerRussell Bryant <russell@russellbryant.com>2006-05-09 07:28:01 +0000
commit61aaf4dd140403cbd32705b123d76370f0d5f27e (patch)
treeb95fb2b82fb1b238ad44ed9ac2a50231b2466777 /res/res_monitor.c
parent4120afc28e36b7de63fe406411f6520047cb5c89 (diff)
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
Diffstat (limited to 'res/res_monitor.c')
-rw-r--r--res/res_monitor.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/res/res_monitor.c b/res/res_monitor.c
index c5c8102a0..4f47a6512 100644
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -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;