HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Ring buffer code. More...
Go to the source code of this file.
Data Structures | |
struct | queue_t |
queue structure More... | |
Macros | |
#define | MEMSPACE |
#define | QUEUE_OVERRUN 1 |
#define | QUEUE_EOL 2 |
Functions | |
queue_t * | queue_new (size_t size) |
Create a ring buffer of a given size. More... | |
void | queue_del (queue_t *q) |
Delete a ring buffer and free memory. More... | |
void | queue_flush (queue_t *q) |
Flush ring buffer. More... | |
size_t | queue_used (queue_t *q) |
Find the number of bytes used by the ring buffer. More... | |
size_t | queue_empty (queue_t *q) |
Is the ring buffer empty ? More... | |
size_t | queue_space (queue_t *q) |
Find the amount of free space remaining in the ring buffer. More... | |
size_t | queue_full (queue_t *q) |
Is the ring buffer full ? More... | |
size_t | queue_push_buffer (queue_t *q, uint8_t *src, size_t size) |
Add a data buffer to the ring buffer Note: This function does not wait/block util there is enough free space to meet the request. So you must check that the return value matches the size. More... | |
size_t | queue_pop_buffer (queue_t *q, uint8_t *dst, size_t size) |
Get a data buffer from the ring buffer. Note: This function does not wait/block until there is enough data to fill the request. So you must check that the return value matches the size. More... | |
int | queue_pushc (queue_t *q, uint8_t c) |
Add a byte to the ring buffer Note: This function does not wait/block util there is enough free space to meet the request. We assume you check queue_full() before calling this function! Otherwise you must check that the return value matches 1. More... | |
int | queue_popc (queue_t *q) |
Remove a byte from the ring buffer Note: This function does not wait/block util there is data to meet the request. We assume you check queue_empty() before calling this function! More... | |
Ring buffer code.
This is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file queue.h.
void queue_del | ( | queue_t * | q | ) |
void queue_flush | ( | queue_t * | q | ) |
Get a data buffer from the ring buffer. Note: This function does not wait/block until there is enough data to fill the request. So you must check that the return value matches the size.
[in] | *q | ring buffer pointer |
[in] | *dst | outout buffer |
[in] | size | size of input buffer |
int queue_popc | ( | queue_t * | q | ) |
Remove a byte from the ring buffer Note: This function does not wait/block util there is data to meet the request. We assume you check queue_empty() before calling this function!
[in] | *q | ring buffer pointer |
Add a data buffer to the ring buffer Note: This function does not wait/block util there is enough free space to meet the request. So you must check that the return value matches the size.
[in] | *q | ring buffer pointer |
[in] | *src | input buffer |
[in] | size | size of input buffer |
int queue_pushc | ( | queue_t * | q, |
uint8_t | c | ||
) |
Add a byte to the ring buffer Note: This function does not wait/block util there is enough free space to meet the request. We assume you check queue_full() before calling this function! Otherwise you must check that the return value matches 1.
[in] | *q | ring buffer pointer |
[in] | c | vyte to add |
Find the amount of free space remaining in the ring buffer.
[in] | *q | ring buffer pointer |
Definition at line 130 of file queue.c.
Referenced by queue_full(), and queue_push_buffer().