progdocs: Fix grouping for latest Doxygen.

Since Doxygen 1.8.16, a special comment block is required. Otherwise
(pure C comment), the group command is ignored. Additionally, several
unbalanced group commands were fixed.

ASTERISK-29732

Change-Id: I4687857b9d56e6f44fd440b73af156691660202e
This commit is contained in:
Alexander Traud
2021-11-12 17:05:05 +01:00
committed by Kevin Harwell
parent bcb7aee723
commit 751bbf4b97
19 changed files with 92 additions and 64 deletions

View File

@@ -83,12 +83,14 @@ static AST_LIST_HEAD_STATIC(zombies, zombie);
#ifdef HAVE_CAP
static cap_t child_cap;
#endif
/*
* @{ \brief Define \ref stasis topic objects
/*!
* \brief Define \ref stasis topic objects
* @{
*/
static struct stasis_topic *queue_topic_all;
static struct stasis_topic_pool *queue_topic_pool;
/* @} */
/*! @} */
static void *shaun_of_the_dead(void *data)
{

View File

@@ -26,13 +26,15 @@
#include "asterisk/mwi.h"
#include "asterisk/stasis_channels.h"
/*
* @{ \brief Define \ref stasis topic objects
/*!
* \brief Define \ref stasis topic objects
* @{
*/
static struct stasis_state_manager *mwi_state_manager;
static struct stasis_cache *mwi_state_cache;
static struct stasis_caching_topic *mwi_topic_cached;
/* @} */
/*! @} */
/*! \brief Convert a MWI \ref stasis_message to a \ref ast_event */
static struct ast_event *mwi_to_event(struct stasis_message *message)
@@ -66,13 +68,15 @@ static struct ast_event *mwi_to_event(struct stasis_message *message)
return event;
}
/*
* @{ \brief Define \ref stasis message types for MWI
/*!
* \brief Define \ref stasis message types for MWI
* @{
*/
STASIS_MESSAGE_TYPE_DEFN(ast_mwi_state_type,
.to_event = mwi_to_event, );
STASIS_MESSAGE_TYPE_DEFN(ast_mwi_vm_app_type);
/* @} */
/*! @} */
static void mwi_state_dtor(void *obj)
{