forked from koparasy/approximate_runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verbose.h
27 lines (27 loc) · 801 Bytes
/
verbose.h
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
#if 0
#ifdef ENABLE_SIGNALS
#warning [NoticeMe] Signal handler mechanism ENABLED
#else
#warning [NoticeMe] Signal handler mechanism disabled
#endif
#ifdef ENABLE_CONTEXT
#warning [NoticeMe] Context_set/get mechanism ENABLED
#else
#warning [NoticeMe] Context_set/get mechanism disabled
#endif
#ifdef DUAL_TASKS
#warning [NoticeMe] Only non-significant tasks are injected faults ENABLED
#else
#warning [NoticeMe] Only non-significant tasks are injected faults disabled
#endif
#ifdef DOUBLE_QUEUES
#warning [NoticeMe] Significant/NonSignificant tasks use different queues ENABLED
#else
#warning [NoticeMe] Significant/NonSignificant tasks use different queues disabled
#endif
#ifdef RAZOR
#warning [NoticeMe] Razor is ENABLED
#else
#warning [NoticeMe] Razor is disabled
#endif
#endif