blob: 2ec5e8baf9ea5ca1e8764fa2a960cd30e790a7fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
struct data {
int prio;
signed char status;
};
struct base {
unsigned _num;
struct data vec[10];
};
static struct data *ix(struct base *base, unsigned i)
{
return &base->vec[i];
}
struct heap {
struct base base;
};
struct heap *heap;
void increase_insn_priority (int *fld, int amount)
{
if (ix(heap ? &heap->base : 0, *fld)->status > 0)
ix(heap ? &heap->base : 0, *fld)->prio += amount;
}
|