2009-02-17 20:51:10 +00:00
|
|
|
/*
|
|
|
|
* Asterisk -- An open source telephony toolkit.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009, Digium, Inc.
|
|
|
|
*
|
|
|
|
* Russell Bryant <russell@digium.com>
|
|
|
|
*
|
|
|
|
* See http://www.asterisk.org for more information about
|
|
|
|
* the Asterisk project. Please do not directly contact
|
|
|
|
* any of the maintainers of this project for assistance;
|
|
|
|
* the project provides a web site, mailing lists and IRC
|
|
|
|
* channels for your use.
|
|
|
|
*
|
|
|
|
* This program is free software, distributed under the terms of
|
|
|
|
* the GNU General Public License Version 2. See the LICENSE file
|
|
|
|
* at the top of the source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \file
|
|
|
|
*
|
|
|
|
* \brief Max Heap data structure
|
|
|
|
*
|
|
|
|
* \author Russell Bryant <russell@digium.com>
|
|
|
|
*/
|
|
|
|
|
2012-06-15 16:20:16 +00:00
|
|
|
/*** MODULEINFO
|
|
|
|
<support_level>core</support_level>
|
|
|
|
***/
|
|
|
|
|
2009-02-17 20:51:10 +00:00
|
|
|
#include "asterisk.h"
|
|
|
|
|
git migration: Refactor the ASTERISK_FILE_VERSION macro
Git does not support the ability to replace a token with a version
string during check-in. While it does have support for replacing a
token on clone, this is somewhat sub-optimal: the token is replaced
with the object hash, which is not particularly easy for human
consumption. What's more, in practice, the source file version was often
not terribly useful. Generally, when triaging bugs, the overall version
of Asterisk is far more useful than an individual SVN version of a file. As a
result, this patch removes Asterisk's support for showing source file
versions.
Specifically, it does the following:
* Rename ASTERISK_FILE_VERSION macro to ASTERISK_REGISTER_FILE, and
remove passing the version in with the macro. Other facilities
than 'core show file version' make use of the file names, such as
setting a debug level only on a specific file. As such, the act of
registering source files with the Asterisk core still has use. The
macro rename now reflects the new macro purpose.
* main/asterisk:
- Refactor the file_version structure to reflect that it no longer
tracks a version field.
- Remove the "core show file version" CLI command. Without the file
version, it is no longer useful.
- Remove the ast_file_version_find function. The file version is no
longer tracked.
- Rename ast_register_file_version/ast_unregister_file_version to
ast_register_file/ast_unregister_file, respectively.
* main/manager: Remove value from the Version key of the ModuleCheck
Action. The actual key itself has not been removed, as doing so would
absolutely constitute a backwards incompatible change. However, since
the file version is no longer tracked, there is no need to attempt to
include it in the Version key.
* UPGRADE: Add notes for:
- Modification to the ModuleCheck AMI Action
- Removal of the "core show file version" CLI command
Change-Id: I6cf0ff280e1668bf4957dc21f32a5ff43444a40e
2015-04-11 21:38:22 -05:00
|
|
|
ASTERISK_REGISTER_FILE()
|
2009-02-17 20:51:10 +00:00
|
|
|
|
|
|
|
#include "asterisk/heap.h"
|
|
|
|
#include "asterisk/utils.h"
|
|
|
|
#include "asterisk/cli.h"
|
|
|
|
|
|
|
|
struct ast_heap {
|
|
|
|
ast_rwlock_t lock;
|
|
|
|
ast_heap_cmp_fn cmp_fn;
|
|
|
|
ssize_t index_offset;
|
|
|
|
size_t cur_len;
|
|
|
|
size_t avail_len;
|
|
|
|
void **heap;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline int left_node(int i)
|
|
|
|
{
|
|
|
|
return 2 * i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int right_node(int i)
|
|
|
|
{
|
|
|
|
return 2 * i + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int parent_node(int i)
|
|
|
|
{
|
|
|
|
return i / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *heap_get(struct ast_heap *h, int i)
|
|
|
|
{
|
|
|
|
return h->heap[i - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline ssize_t get_index(struct ast_heap *h, void *elm)
|
|
|
|
{
|
|
|
|
ssize_t *index;
|
|
|
|
|
|
|
|
if (h->index_offset < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
index = elm + h->index_offset;
|
|
|
|
|
|
|
|
return *index;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void heap_set(struct ast_heap *h, int i, void *elm)
|
|
|
|
{
|
|
|
|
h->heap[i - 1] = elm;
|
|
|
|
|
|
|
|
if (h->index_offset >= 0) {
|
|
|
|
ssize_t *index = elm + h->index_offset;
|
|
|
|
*index = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int ast_heap_verify(struct ast_heap *h)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 1; i <= (h->cur_len / 2); i++) {
|
|
|
|
int l = left_node(i);
|
|
|
|
int r = right_node(i);
|
|
|
|
|
|
|
|
if (l <= h->cur_len) {
|
Fix handling of removing nodes from the middle of a heap.
This bug surfaced in 1.6.2 and does not affect code in any other released
version of Asterisk. It manifested itself as SIP qualify not happening when
it should, causing peers to go unreachable. This was debugged down to scheduler
entries sometimes not getting executed when they were supposed to, which was in
turn caused by an error in the heap code.
The problem only sometimes occurs, and it is due to the logic for removing an entry
in the heap from an arbitrary location (not just popping off the top). The scheduler
performs this operation frequently when entries are removed before they run (when
ast_sched_del() is used).
In a normal pop off of the top of the heap, a node is taken off the bottom,
placed at the top, and then bubbled down until the max heap property is restored
(see max_heapify()). This same logic was used for removing an arbitrary node
from the middle of the heap. Unfortunately, that logic is full of fail. This
patch fixes that by fully restoring the max heap property when a node is thrown
into the middle of the heap. Instead of just pushing it down as appropriate, it
first pushes it up as high as it will go, and _then_ pushes it down.
Lastly, fix a minor problem in ast_heap_verify(), which is only used for
debugging. If a parent and child node have the same value, that is not an
error. The only error is if a parent's value is less than its children.
A huge thanks goes out to cappucinoking for debugging this down to the scheduler,
and then producing an ast_heap test case that demonstrated the breakage. That
made it very easy for me to focus on the heap logic and produce a fix. Open source
projects are awesome.
(closes issue #16936)
Reported by: ib2
Tested by: cappucinoking, crjw
(closes issue #17277)
Reported by: cappucinoking
Patches:
heap-fix.rev2.diff uploaded by russell (license 2)
Tested by: cappucinoking, russell
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2010-05-06 13:58:07 +00:00
|
|
|
if (h->cmp_fn(heap_get(h, i), heap_get(h, l)) < 0) {
|
2009-02-17 20:51:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r <= h->cur_len) {
|
Fix handling of removing nodes from the middle of a heap.
This bug surfaced in 1.6.2 and does not affect code in any other released
version of Asterisk. It manifested itself as SIP qualify not happening when
it should, causing peers to go unreachable. This was debugged down to scheduler
entries sometimes not getting executed when they were supposed to, which was in
turn caused by an error in the heap code.
The problem only sometimes occurs, and it is due to the logic for removing an entry
in the heap from an arbitrary location (not just popping off the top). The scheduler
performs this operation frequently when entries are removed before they run (when
ast_sched_del() is used).
In a normal pop off of the top of the heap, a node is taken off the bottom,
placed at the top, and then bubbled down until the max heap property is restored
(see max_heapify()). This same logic was used for removing an arbitrary node
from the middle of the heap. Unfortunately, that logic is full of fail. This
patch fixes that by fully restoring the max heap property when a node is thrown
into the middle of the heap. Instead of just pushing it down as appropriate, it
first pushes it up as high as it will go, and _then_ pushes it down.
Lastly, fix a minor problem in ast_heap_verify(), which is only used for
debugging. If a parent and child node have the same value, that is not an
error. The only error is if a parent's value is less than its children.
A huge thanks goes out to cappucinoking for debugging this down to the scheduler,
and then producing an ast_heap test case that demonstrated the breakage. That
made it very easy for me to focus on the heap logic and produce a fix. Open source
projects are awesome.
(closes issue #16936)
Reported by: ib2
Tested by: cappucinoking, crjw
(closes issue #17277)
Reported by: cappucinoking
Patches:
heap-fix.rev2.diff uploaded by russell (license 2)
Tested by: cappucinoking, russell
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2010-05-06 13:58:07 +00:00
|
|
|
if (h->cmp_fn(heap_get(h, i), heap_get(h, r)) < 0) {
|
2009-02-17 20:51:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-11 00:29:59 +00:00
|
|
|
#ifdef MALLOC_DEBUG
|
|
|
|
struct ast_heap *_ast_heap_create(unsigned int init_height, ast_heap_cmp_fn cmp_fn,
|
|
|
|
ssize_t index_offset, const char *file, int lineno, const char *func)
|
|
|
|
#else
|
2009-02-17 20:51:10 +00:00
|
|
|
struct ast_heap *ast_heap_create(unsigned int init_height, ast_heap_cmp_fn cmp_fn,
|
|
|
|
ssize_t index_offset)
|
2009-03-11 00:29:59 +00:00
|
|
|
#endif
|
2009-02-17 20:51:10 +00:00
|
|
|
{
|
|
|
|
struct ast_heap *h;
|
|
|
|
|
|
|
|
if (!cmp_fn) {
|
|
|
|
ast_log(LOG_ERROR, "A comparison function must be provided\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!init_height) {
|
|
|
|
init_height = 8;
|
|
|
|
}
|
|
|
|
|
2009-03-11 00:29:59 +00:00
|
|
|
if (!(h =
|
|
|
|
#ifdef MALLOC_DEBUG
|
|
|
|
__ast_calloc(1, sizeof(*h), file, lineno, func)
|
|
|
|
#else
|
|
|
|
ast_calloc(1, sizeof(*h))
|
|
|
|
#endif
|
|
|
|
)) {
|
2009-02-17 20:51:10 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
h->cmp_fn = cmp_fn;
|
|
|
|
h->index_offset = index_offset;
|
|
|
|
h->avail_len = (1 << init_height) - 1;
|
|
|
|
|
2009-03-11 00:29:59 +00:00
|
|
|
if (!(h->heap =
|
|
|
|
#ifdef MALLOC_DEBUG
|
|
|
|
__ast_calloc(1, h->avail_len * sizeof(void *), file, lineno, func)
|
|
|
|
#else
|
|
|
|
ast_calloc(1, h->avail_len * sizeof(void *))
|
|
|
|
#endif
|
|
|
|
)) {
|
2009-02-17 20:51:10 +00:00
|
|
|
ast_free(h);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ast_rwlock_init(&h->lock);
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ast_heap *ast_heap_destroy(struct ast_heap *h)
|
|
|
|
{
|
|
|
|
ast_free(h->heap);
|
|
|
|
h->heap = NULL;
|
|
|
|
|
|
|
|
ast_rwlock_destroy(&h->lock);
|
|
|
|
|
|
|
|
ast_free(h);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Add a row of additional storage for the heap.
|
|
|
|
*/
|
2009-03-11 00:29:59 +00:00
|
|
|
static int grow_heap(struct ast_heap *h
|
|
|
|
#ifdef MALLOC_DEBUG
|
|
|
|
, const char *file, int lineno, const char *func
|
|
|
|
#endif
|
|
|
|
)
|
2009-02-17 20:51:10 +00:00
|
|
|
{
|
2013-09-10 18:05:47 +00:00
|
|
|
void **new_heap;
|
|
|
|
size_t new_len = h->avail_len * 2 + 1;
|
2009-02-17 20:51:10 +00:00
|
|
|
|
2009-03-11 00:29:59 +00:00
|
|
|
#ifdef MALLOC_DEBUG
|
2013-09-10 18:05:47 +00:00
|
|
|
new_heap = __ast_realloc(h->heap, new_len * sizeof(void *), file, lineno, func);
|
2009-03-11 00:29:59 +00:00
|
|
|
#else
|
2013-09-10 18:05:47 +00:00
|
|
|
new_heap = ast_realloc(h->heap, new_len * sizeof(void *));
|
2009-03-11 00:29:59 +00:00
|
|
|
#endif
|
2013-09-10 18:05:47 +00:00
|
|
|
if (!new_heap) {
|
2009-02-17 20:51:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2013-09-10 18:05:47 +00:00
|
|
|
h->heap = new_heap;
|
|
|
|
h->avail_len = new_len;
|
2009-02-17 20:51:10 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void heap_swap(struct ast_heap *h, int i, int j)
|
|
|
|
{
|
|
|
|
void *tmp;
|
|
|
|
|
|
|
|
tmp = heap_get(h, i);
|
|
|
|
heap_set(h, i, heap_get(h, j));
|
|
|
|
heap_set(h, j, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void max_heapify(struct ast_heap *h, int i)
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
int l = left_node(i);
|
|
|
|
int r = right_node(i);
|
|
|
|
int max;
|
|
|
|
|
|
|
|
if (l <= h->cur_len && h->cmp_fn(heap_get(h, l), heap_get(h, i)) > 0) {
|
|
|
|
max = l;
|
|
|
|
} else {
|
|
|
|
max = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r <= h->cur_len && h->cmp_fn(heap_get(h, r), heap_get(h, max)) > 0) {
|
|
|
|
max = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max == i) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
heap_swap(h, i, max);
|
|
|
|
|
|
|
|
i = max;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Fix handling of removing nodes from the middle of a heap.
This bug surfaced in 1.6.2 and does not affect code in any other released
version of Asterisk. It manifested itself as SIP qualify not happening when
it should, causing peers to go unreachable. This was debugged down to scheduler
entries sometimes not getting executed when they were supposed to, which was in
turn caused by an error in the heap code.
The problem only sometimes occurs, and it is due to the logic for removing an entry
in the heap from an arbitrary location (not just popping off the top). The scheduler
performs this operation frequently when entries are removed before they run (when
ast_sched_del() is used).
In a normal pop off of the top of the heap, a node is taken off the bottom,
placed at the top, and then bubbled down until the max heap property is restored
(see max_heapify()). This same logic was used for removing an arbitrary node
from the middle of the heap. Unfortunately, that logic is full of fail. This
patch fixes that by fully restoring the max heap property when a node is thrown
into the middle of the heap. Instead of just pushing it down as appropriate, it
first pushes it up as high as it will go, and _then_ pushes it down.
Lastly, fix a minor problem in ast_heap_verify(), which is only used for
debugging. If a parent and child node have the same value, that is not an
error. The only error is if a parent's value is less than its children.
A huge thanks goes out to cappucinoking for debugging this down to the scheduler,
and then producing an ast_heap test case that demonstrated the breakage. That
made it very easy for me to focus on the heap logic and produce a fix. Open source
projects are awesome.
(closes issue #16936)
Reported by: ib2
Tested by: cappucinoking, crjw
(closes issue #17277)
Reported by: cappucinoking
Patches:
heap-fix.rev2.diff uploaded by russell (license 2)
Tested by: cappucinoking, russell
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2010-05-06 13:58:07 +00:00
|
|
|
static int bubble_up(struct ast_heap *h, int i)
|
|
|
|
{
|
|
|
|
while (i > 1 && h->cmp_fn(heap_get(h, parent_node(i)), heap_get(h, i)) < 0) {
|
|
|
|
heap_swap(h, i, parent_node(i));
|
|
|
|
i = parent_node(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2009-03-11 00:29:59 +00:00
|
|
|
#ifdef MALLOC_DEBUG
|
|
|
|
int _ast_heap_push(struct ast_heap *h, void *elm, const char *file, int lineno, const char *func)
|
|
|
|
#else
|
2009-02-17 20:51:10 +00:00
|
|
|
int ast_heap_push(struct ast_heap *h, void *elm)
|
2009-03-11 00:29:59 +00:00
|
|
|
#endif
|
2009-02-17 20:51:10 +00:00
|
|
|
{
|
2009-03-11 00:29:59 +00:00
|
|
|
if (h->cur_len == h->avail_len && grow_heap(h
|
|
|
|
#ifdef MALLOC_DEBUG
|
|
|
|
, file, lineno, func
|
|
|
|
#endif
|
|
|
|
)) {
|
2009-02-17 20:51:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
heap_set(h, ++(h->cur_len), elm);
|
|
|
|
|
Fix handling of removing nodes from the middle of a heap.
This bug surfaced in 1.6.2 and does not affect code in any other released
version of Asterisk. It manifested itself as SIP qualify not happening when
it should, causing peers to go unreachable. This was debugged down to scheduler
entries sometimes not getting executed when they were supposed to, which was in
turn caused by an error in the heap code.
The problem only sometimes occurs, and it is due to the logic for removing an entry
in the heap from an arbitrary location (not just popping off the top). The scheduler
performs this operation frequently when entries are removed before they run (when
ast_sched_del() is used).
In a normal pop off of the top of the heap, a node is taken off the bottom,
placed at the top, and then bubbled down until the max heap property is restored
(see max_heapify()). This same logic was used for removing an arbitrary node
from the middle of the heap. Unfortunately, that logic is full of fail. This
patch fixes that by fully restoring the max heap property when a node is thrown
into the middle of the heap. Instead of just pushing it down as appropriate, it
first pushes it up as high as it will go, and _then_ pushes it down.
Lastly, fix a minor problem in ast_heap_verify(), which is only used for
debugging. If a parent and child node have the same value, that is not an
error. The only error is if a parent's value is less than its children.
A huge thanks goes out to cappucinoking for debugging this down to the scheduler,
and then producing an ast_heap test case that demonstrated the breakage. That
made it very easy for me to focus on the heap logic and produce a fix. Open source
projects are awesome.
(closes issue #16936)
Reported by: ib2
Tested by: cappucinoking, crjw
(closes issue #17277)
Reported by: cappucinoking
Patches:
heap-fix.rev2.diff uploaded by russell (license 2)
Tested by: cappucinoking, russell
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2010-05-06 13:58:07 +00:00
|
|
|
bubble_up(h, h->cur_len);
|
2009-02-17 20:51:10 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *_ast_heap_remove(struct ast_heap *h, unsigned int index)
|
|
|
|
{
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
if (!index || index > h->cur_len) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = heap_get(h, index);
|
|
|
|
heap_set(h, index, heap_get(h, (h->cur_len)--));
|
Fix handling of removing nodes from the middle of a heap.
This bug surfaced in 1.6.2 and does not affect code in any other released
version of Asterisk. It manifested itself as SIP qualify not happening when
it should, causing peers to go unreachable. This was debugged down to scheduler
entries sometimes not getting executed when they were supposed to, which was in
turn caused by an error in the heap code.
The problem only sometimes occurs, and it is due to the logic for removing an entry
in the heap from an arbitrary location (not just popping off the top). The scheduler
performs this operation frequently when entries are removed before they run (when
ast_sched_del() is used).
In a normal pop off of the top of the heap, a node is taken off the bottom,
placed at the top, and then bubbled down until the max heap property is restored
(see max_heapify()). This same logic was used for removing an arbitrary node
from the middle of the heap. Unfortunately, that logic is full of fail. This
patch fixes that by fully restoring the max heap property when a node is thrown
into the middle of the heap. Instead of just pushing it down as appropriate, it
first pushes it up as high as it will go, and _then_ pushes it down.
Lastly, fix a minor problem in ast_heap_verify(), which is only used for
debugging. If a parent and child node have the same value, that is not an
error. The only error is if a parent's value is less than its children.
A huge thanks goes out to cappucinoking for debugging this down to the scheduler,
and then producing an ast_heap test case that demonstrated the breakage. That
made it very easy for me to focus on the heap logic and produce a fix. Open source
projects are awesome.
(closes issue #16936)
Reported by: ib2
Tested by: cappucinoking, crjw
(closes issue #17277)
Reported by: cappucinoking
Patches:
heap-fix.rev2.diff uploaded by russell (license 2)
Tested by: cappucinoking, russell
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@261496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2010-05-06 13:58:07 +00:00
|
|
|
index = bubble_up(h, index);
|
2009-02-17 20:51:10 +00:00
|
|
|
max_heapify(h, index);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *ast_heap_remove(struct ast_heap *h, void *elm)
|
|
|
|
{
|
|
|
|
ssize_t i = get_index(h, elm);
|
|
|
|
|
|
|
|
if (i == -1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _ast_heap_remove(h, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *ast_heap_pop(struct ast_heap *h)
|
|
|
|
{
|
|
|
|
return _ast_heap_remove(h, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *ast_heap_peek(struct ast_heap *h, unsigned int index)
|
|
|
|
{
|
|
|
|
if (!h->cur_len || !index || index > h->cur_len) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return heap_get(h, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t ast_heap_size(struct ast_heap *h)
|
|
|
|
{
|
|
|
|
return h->cur_len;
|
|
|
|
}
|
|
|
|
|
2009-03-27 01:35:56 +00:00
|
|
|
int __ast_heap_wrlock(struct ast_heap *h, const char *file, const char *func, int line)
|
|
|
|
{
|
2011-01-31 06:50:49 +00:00
|
|
|
return __ast_rwlock_wrlock(file, line, func, &h->lock, "&h->lock");
|
2009-03-27 01:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int __ast_heap_rdlock(struct ast_heap *h, const char *file, const char *func, int line)
|
|
|
|
{
|
2011-01-31 06:50:49 +00:00
|
|
|
return __ast_rwlock_rdlock(file, line, func, &h->lock, "&h->lock");
|
2009-03-27 01:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int __ast_heap_unlock(struct ast_heap *h, const char *file, const char *func, int line)
|
|
|
|
{
|
2011-01-31 06:50:49 +00:00
|
|
|
return __ast_rwlock_unlock(file, line, func, &h->lock, "&h->lock");
|
2009-03-27 01:35:56 +00:00
|
|
|
}
|