- use more common defines for mutex_lock/unlock and _log()

This commit is contained in:
MelwareDE 2005-11-27 14:47:54 +00:00
parent 2e62ad0306
commit 21cce7a3e8
2 changed files with 221 additions and 214 deletions

File diff suppressed because it is too large Load Diff

View File

@ -76,6 +76,13 @@ static inline unsigned short read_capi_dword(void *m)
return (val);
}
/*
* PBX defines
*/
#define cc_mutex_lock(x) ast_mutex_lock(x)
#define cc_mutex_unlock(x) ast_mutex_unlock(x)
#define cc_log(x...) ast_log(x)
/*
* definitions for compatibility with older versions of ast*
*/