1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

gnrc_pktqueue: fix doc

This commit is contained in:
Martine Lenders 2016-10-17 13:24:04 +02:00
parent 466890422f
commit a4cc50d5b7

View File

@ -7,13 +7,13 @@
*/ */
/** /**
* @defgroup net_gnrc_pktqueue Packet Queue * @defgroup net_gnrc_pktqueue Packet queue
* @ingroup net_gnrc * @ingroup net_gnrc
* @brief Packet wrapper for the Priority Queue * @brief @ref gnrc_pktsnip_t queue
* @{ * @{
* *
* @file * @file
* @brief gnrc_pktsnip_t-centric wrapper for @ref priority_queue_t * @brief Packet queue definitions
* *
* @author Martine Lenders <mlenders@inf.fu-berlin.de> * @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/ */
@ -33,8 +33,6 @@ extern "C" {
/** /**
* @brief data type for packet queue nodes * @brief data type for packet queue nodes
*
* @extends priority_queue_node_t
*/ */
typedef struct gnrc_pktqueue { typedef struct gnrc_pktqueue {
struct gnrc_pktqueue *next; /**< next node in queue */ struct gnrc_pktqueue *next; /**< next node in queue */
@ -42,10 +40,7 @@ typedef struct gnrc_pktqueue {
} gnrc_pktqueue_t; } gnrc_pktqueue_t;
/** /**
* @brief add @p node into @p queue based on its priority * @brief add @p node into @p queue.
*
* @details The new node will be appended after objects with the same
* priority.
* *
* @param[in,out] queue the queue, may not be NULL * @param[in,out] queue the queue, may not be NULL
* @param[in] node the node to add. * @param[in] node the node to add.