4 * @brief Send-Queue based on linked_list_t
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 #include <network/packet.h>
30 typedef struct send_queue_t send_queue_t
;
35 * Although the send-queue is based on a linked_list_t
36 * all access functions are thread-save implemented
41 * @brief returns number of packets in queue
43 * @param send_queue_t calling object
44 * @param[out] count integer pointer to store the count in
45 * @returns number of items in queue
47 int (*get_count
) (send_queue_t
*send_queue
);
50 * @brief get the next packet from the queue
52 * If the queue is empty, this function blocks until a packet can be returned.
54 * After using, the returned packet has to get destroyed by the caller.
56 * @param send_queue_t calling object
57 * @param[out] packet pointer to a packet_t pointer where to packet is returned to
58 * @returns SUCCESS if succeeded, FAILED otherwise
60 status_t (*get
) (send_queue_t
*send_queue
, packet_t
**packet
);
63 * @brief adds a packet to the queue
65 * This function is non blocking and adds a packet_t to the list.
66 * The specific packet object has to get destroyed by the thread which
69 * @param send_queue_t calling object
70 * @param[in] packet packet_t to add to the queue (packet is not copied)
71 * @returns SUCCESS if succeeded, FAILED otherwise
73 status_t (*add
) (send_queue_t
*send_queue
, packet_t
*packet
);
76 * @brief destroys a send_queue object
78 * @warning The caller of this function has to make sure
79 * that no thread is going to add or get a packet from the send_queue
80 * after calling this function.
82 * @param send_queue_t calling object
83 * @returns SUCCESS if succeeded, FAILED otherwise
85 status_t (*destroy
) (send_queue_t
*send_queue
);
89 * @brief Creates an empty send_queue_t
91 * @return send_queue_t empty send_queue_t
93 send_queue_t
*send_queue_create();
95 #endif /*SEND_QUEUE_H_*/