mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Merged revisions 87373 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r87373 | russell | 2007-10-29 14:21:06 -0500 (Mon, 29 Oct 2007) | 5 lines Remove a lock that doesn't make any sense. The regions lock needs to be held when traversing the list of allocated chunks so that they can be printed out to the CLI. (Thanks to eliel on #asterisk-dev for pointing this out!) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87392 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -84,7 +84,6 @@ static struct ast_region {
|
||||
/*! Tracking this mutex will cause infinite recursion, as the mutex tracking
|
||||
* code allocates memory */
|
||||
AST_MUTEX_DEFINE_STATIC_NOTRACKING(reglock);
|
||||
AST_MUTEX_DEFINE_STATIC(showmemorylock);
|
||||
|
||||
#define astmm_log(...) \
|
||||
do { \
|
||||
@@ -333,7 +332,7 @@ static char *handle_memory_show(struct ast_cli_entry *e, int cmd, struct ast_cli
|
||||
if (a->argc > 3)
|
||||
fn = a->argv[3];
|
||||
|
||||
ast_mutex_lock(&showmemorylock);
|
||||
ast_mutex_lock(®lock);
|
||||
for (x = 0; x < SOME_PRIME; x++) {
|
||||
for (reg = regions[x]; reg; reg = reg->next) {
|
||||
if (!fn || !strcasecmp(fn, reg->file) || !strcasecmp(fn, "anomolies")) {
|
||||
@@ -359,7 +358,7 @@ static char *handle_memory_show(struct ast_cli_entry *e, int cmd, struct ast_cli
|
||||
}
|
||||
}
|
||||
}
|
||||
ast_mutex_unlock(&showmemorylock);
|
||||
ast_mutex_unlock(®lock);
|
||||
|
||||
if (cache_len)
|
||||
ast_cli(a->fd, "%d bytes allocated (%d in caches) in %d allocations\n", len, cache_len, count);
|
||||
|
Reference in New Issue
Block a user