diff options
Diffstat (limited to 'include/litmus/rt_param.h')
-rw-r--r-- | include/litmus/rt_param.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index fac939dbd33a..6456ed04fddb 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -89,8 +89,14 @@ union np_flag { | |||
89 | * determining preemption/migration overheads). | 89 | * determining preemption/migration overheads). |
90 | */ | 90 | */ |
91 | struct control_page { | 91 | struct control_page { |
92 | /* This flag is used by userspace to communicate non-preempive | ||
93 | * sections. */ | ||
92 | volatile union np_flag sched; | 94 | volatile union np_flag sched; |
93 | 95 | ||
96 | /* Locking overhead tracing: userspace records here the time stamp | ||
97 | * prior to starting the system call. */ | ||
98 | uint64_t ts_syscall_start; /* Feather-Trace cycles */ | ||
99 | |||
94 | /* to be extended */ | 100 | /* to be extended */ |
95 | }; | 101 | }; |
96 | 102 | ||