dect
/
asterisk
Archived
13
0
Fork 0

Change cc_ref and cc_unref from macros to inline functions.

The hope is that Solaris won't be as whiny after this change.



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@259357 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mmichelson 2010-04-27 19:52:18 +00:00
parent 34e150d831
commit 28545902b3
1 changed files with 11 additions and 2 deletions

View File

@ -98,8 +98,17 @@ static unsigned int global_cc_max_requests;
*/
static int cc_request_count;
#define cc_ref(obj, debug) ({ao2_t_ref((obj), +1, (debug)); (obj);})
#define cc_unref(obj, debug) ({ao2_t_ref((obj), -1, (debug)); NULL;})
static inline void *cc_ref(void *obj, const char *debug)
{
ao2_t_ref(obj, +1, debug);
return obj;
}
static inline void *cc_unref(void *obj, const char *debug)
{
ao2_t_ref(obj, -1, debug);
return NULL;
}
/*!
* \since 1.8