mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
remove useless usecnt handling
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47073 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -65,9 +65,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
|
|
||||||
static const char tdesc[] = "Feature Proxy Channel Driver";
|
static const char tdesc[] = "Feature Proxy Channel Driver";
|
||||||
|
|
||||||
static int usecnt =0;
|
|
||||||
AST_MUTEX_DEFINE_STATIC(usecnt_lock);
|
|
||||||
|
|
||||||
#define IS_OUTBOUND(a,b) (a == b->chan ? 1 : 0)
|
#define IS_OUTBOUND(a,b) (a == b->chan ? 1 : 0)
|
||||||
|
|
||||||
struct feature_sub {
|
struct feature_sub {
|
||||||
@@ -487,10 +484,6 @@ static struct ast_channel *features_new(struct feature_pvt *p, int state, int in
|
|||||||
p->subs[index].owner = tmp;
|
p->subs[index].owner = tmp;
|
||||||
if (!p->owner)
|
if (!p->owner)
|
||||||
p->owner = tmp;
|
p->owner = tmp;
|
||||||
ast_mutex_lock(&usecnt_lock);
|
|
||||||
usecnt++;
|
|
||||||
ast_mutex_unlock(&usecnt_lock);
|
|
||||||
ast_update_use_count();
|
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user