HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
23 #include "user_config.h"
172 q->
buf[q->
in++] = *src++;
198 while(size && q->
bytes)
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...
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
dst_t dst
DST start and stop in GMT epoch.
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
size_t queue_full(queue_t *q)
Is the ring buffer full ?
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...
size_t queue_used(queue_t *q)
Find the number of bytes used by the ring buffer.
void queue_flush(queue_t *q)
Flush ring buffer.
void queue_del(queue_t *q)
Delete a ring buffer and free memory.
queue_t * queue_new(size_t size)
Create a ring buffer of a given size.
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...
size_t queue_space(queue_t *q)
Find the amount of free space remaining in the ring buffer.
size_t queue_empty(queue_t *q)
Is the ring buffer empty ?
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 fre...