-
Notifications
You must be signed in to change notification settings - Fork 0
/
banana-bowl.c
72 lines (59 loc) · 1.61 KB
/
banana-bowl.c
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifdef ATOMIC_ALL_NIGHTERS
/* function annotations */
#define MAY_SLEEP __attribute__((atomic_all_nighters("might_sleep")))
#define WONT_SLEEP __attribute__((atomic_all_nighters("wont_sleep")))
/* context-changing annotations */
#define ENTER_ATOMIC __attribute__((atomic_all_nighters("wont_sleep","force_enable")))
#define EXIT_ATOMIC __attribute__((atomic_all_nighters("wont_sleep","force_disable")))
#define ENTER_ATOMIC_NESTED __attribute__((atomic_all_nighters("wont_sleep","enter_nested")))
#define EXIT_ATOMIC_NESTED __attribute__((atomic_all_nighters("wont_sleep","exit_nested")))
#else
#define MAY_SLEEP
#define WONT_SLEEP
#define ENTER_ATOMIC
#define EXIT_ATOMIC
#define ENTER_ATOMIC_NESTED
#define EXIT_ATOMIC_NESTED
#define WONT_SLEEP
#define MAY_SLEEP
#endif
struct mutex;
struct spinlock;
void MAY_SLEEP mutex_lock(struct mutex *mp);
void MAY_SLEEP mutex_unlock(struct mutex *mp);
void WONT_SLEEP mutex_assert_is_locked(struct mutex *mp);
void ENTER_ATOMIC_NESTED spin_lock(struct spinlock *sp);
void EXIT_ATOMIC_NESTED spin_unlock(struct spinlock *sp);
struct spinlock *a;
struct mutex *m;
int x;
void banana()
{
x++;
}
void apple()
{
mutex_lock(m);
x++;
mutex_unlock(m);
}
struct banana_bowl {
void (*f)(void);
};
struct fruit_bowl {
void (*f)(void);
};
int MAY_SLEEP main()
{
// This should fail.
// The struct pointer acts as a reference cell, assignment to which
// must be neither covariant nor contravariant.
struct banana_bowl bananas;
struct fruit_bowl *fruit;
bananas.f = banana;
fruit = &bananas;
fruit->f = apple;
spin_lock(a);
bananas.f();
spin_unlock(a);
}