diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 08:35:26 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 08:35:26 +0000 |
commit | 8b73362a4a88aaa3642db398d17e65eab871d9ed (patch) | |
tree | 8a0d6b8de07781a347a081cb876e9868016ee627 /sync.c | |
parent | 16bf2379c0400f72cba72063b3f2edce14236f34 (diff) | |
download | rsyslog-8b73362a4a88aaa3642db398d17e65eab871d9ed.tar.gz rsyslog-8b73362a4a88aaa3642db398d17e65eab871d9ed.tar.bz2 rsyslog-8b73362a4a88aaa3642db398d17e65eab871d9ed.zip |
- improved debug support a bit (assertions)
- restructured code, moved some part out of syslogd.c to action.c, where
they belong (still some more to do in that regard ;))
Diffstat (limited to 'sync.c')
-rw-r--r-- | sync.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -60,7 +60,9 @@ SyncObjExit(pthread_mutex_t **mut) void lockObj(pthread_mutex_t *mut) { - pthread_mutex_lock(mut); + BEGINfunc + d_pthread_mutex_lock(mut); + ENDfunc } /* unlock an object. The synchronization tool (mutex) must be passed in. @@ -68,6 +70,8 @@ lockObj(pthread_mutex_t *mut) void unlockObj(pthread_mutex_t *mut) { - pthread_mutex_unlock(mut); + BEGINfunc + d_pthread_mutex_unlock(mut); + ENDfunc } #endif /* #ifndef NDEBUG */ |