21#define INTQ_BUFSIZE 64
void intq_init(struct intq *)
Definition: intq.c:11
bool intq_empty(const struct intq *)
Definition: intq.c:19
bool intq_full(const struct intq *)
Definition: intq.c:26
#define INTQ_BUFSIZE
Definition: intq.h:21
uint8_t intq_getc(struct intq *)
Definition: intq.c:36
void intq_putc(struct intq *, uint8_t)
Definition: intq.c:58
unsigned char uint8_t
Definition: stdint.h:20
struct thread * not_empty
Definition: intq.h:28
int head
Definition: intq.h:32
int tail
Definition: intq.h:33
uint8_t buf[INTQ_BUFSIZE]
Definition: intq.h:31
struct thread * not_full
Definition: intq.h:27