1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
41
42
43
44
45
/* ... */
#pragma once
#include <stdint.h>
#include "sys/queue.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef struct lldesc_s {
volatile uint32_t size : 12,
length: 12,
offset: 5,
sosf : 1,
eof : 1,
owner : 1;
volatile const uint8_t *buf;
union {
volatile uint32_t empty;
STAILQ_ENTRY(lldesc_s) qe;
}{ ... };
}{ ... } lldesc_t;
#ifdef __cplusplus
}{...}
#endif