|
Last change
on this file since 0170798 was 5fa506d, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Include file cleanup.
|
-
Property mode
set to
100644
|
|
File size:
580 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | ============================================================================
|
|---|
| 3 | wordq.h -- header for word queue functions
|
|---|
| 4 | Version 1 -- 1988-11-02 -- D.N. Lynx Crowe
|
|---|
| 5 | ============================================================================
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #pragma once
|
|---|
| 9 |
|
|---|
| 10 | #include "stdint.h"
|
|---|
| 11 |
|
|---|
| 12 | struct wordq {
|
|---|
| 13 |
|
|---|
| 14 | uint16_t qsize; /* maximum queue length */
|
|---|
| 15 | uint16_t qlen; /* current queue length */
|
|---|
| 16 | uint16_t qin; /* in pointer */
|
|---|
| 17 | uint16_t qout; /* out pointer */
|
|---|
| 18 | uint16_t qhi; /* high water mark */
|
|---|
| 19 | uint16_t qlo; /* low water mark */
|
|---|
| 20 | uint16_t *qbuf; /* base of queue */
|
|---|
| 21 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.