mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
progdocs: Fix for Doxygen, the hidden parts.
ASTERISK-29779 Change-Id: If338163488498f65fa7248b60e80299c0a928e4b
This commit is contained in:
committed by
Kevin Harwell
parent
0398daf4cb
commit
3489f926e7
@@ -188,8 +188,6 @@ static int test_sort_cb(const void *obj_left, const void *obj_right, int flags)
|
||||
* \param v_obj A pointer to the object we want the key printed.
|
||||
* \param where User data needed by prnt to determine where to put output.
|
||||
* \param prnt Print output callback function to use.
|
||||
*
|
||||
* \return Nothing
|
||||
*/
|
||||
static void test_prnt_obj(void *v_obj, void *where, ao2_prnt_fn *prnt)
|
||||
{
|
||||
|
@@ -73,13 +73,13 @@ static int is_timed_out(struct hash_test const *data) {
|
||||
return ast_tvdiff_us(data->deadline, ast_tvnow()) < 0;
|
||||
}
|
||||
|
||||
/*! /brief Free test element */
|
||||
/*! \brief Free test element */
|
||||
static void ht_delete(void *obj)
|
||||
{
|
||||
ast_atomic_fetchadd_int(&alloc_count, -1);
|
||||
}
|
||||
|
||||
/*! /brief Create test element */
|
||||
/*! \brief Create test element */
|
||||
static char *ht_new(int i)
|
||||
{
|
||||
const int buflen = 12;
|
||||
@@ -94,7 +94,7 @@ static char *ht_new(int i)
|
||||
return keybuf;
|
||||
}
|
||||
|
||||
/*! /brief Grow the hash data as specified */
|
||||
/*! \brief Grow the hash data as specified */
|
||||
static void *hash_test_grow(void *d)
|
||||
{
|
||||
struct hash_test *data = d;
|
||||
|
@@ -73,7 +73,7 @@ static int is_timed_out(struct hash_test const *data) {
|
||||
return val;
|
||||
}
|
||||
|
||||
/*! /brief Create test element */
|
||||
/*! \brief Create test element */
|
||||
static char *ht_new(int i)
|
||||
{
|
||||
const int buflen = 12;
|
||||
@@ -87,13 +87,13 @@ static char *ht_new(int i)
|
||||
return keybuf;
|
||||
}
|
||||
|
||||
/*! /brief Free test element */
|
||||
/*! \brief Free test element */
|
||||
static void ht_delete(void *obj)
|
||||
{
|
||||
ast_free(obj);
|
||||
}
|
||||
|
||||
/*! /brief Grow the hash data as specified */
|
||||
/*! \brief Grow the hash data as specified */
|
||||
static void *hash_test_grow(void *d)
|
||||
{
|
||||
struct hash_test *data = d;
|
||||
|
Reference in New Issue
Block a user