提交 42ebfbfc authored 作者: Travis Cross's avatar Travis Cross

mod_fifo: Document the fifo_queue_t structure

上级 5f4ed9c1
...@@ -111,6 +111,16 @@ typedef enum { ...@@ -111,6 +111,16 @@ typedef enum {
NODE_STRATEGY_ENTERPRISE NODE_STRATEGY_ENTERPRISE
} outbound_strategy_t; } outbound_strategy_t;
/*!\struct fifo_queue_t
* \brief Queue of callers
*
* Callers are placed into a queue as events in `data` which is an
* array of such events. The array size is hard-coded as 1000
* elements.
*
* Fifo nodes are composed of an array of these queues representing
* each priority level of the fifo.
*/
typedef struct { typedef struct {
int nelm; int nelm;
int idx; int idx;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论