summaryrefslogtreecommitdiffstats
path: root/app/events.h
blob: 550277db4713af2ab38decf582cb85a734121ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define ERING_SIZE 16
#define ERING_MASK (ERING_SIZE -1)

typedef struct {
  uint32_t when;
  uint32_t value;
} Event;


typedef struct {
  Event events[ERING_SIZE];
  uint32_t rx_ptr, tx_ptr;
} Event_ring;