aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--include/litmus/rt_param.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a32772541d0e..4a479d634ea2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1VERSION = 3 1VERSION = 3
2PATCHLEVEL = 0 2PATCHLEVEL = 0
3SUBLEVEL = 0 3SUBLEVEL = 0
4EXTRAVERSION =-litmus 4EXTRAVERSION =-litmus2012.2-splitting-jerickso
5NAME = Sneaky Weasel 5NAME = Sneaky Weasel
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h
index 6c05b14e7ce4..c6264d01d47e 100644
--- a/include/litmus/rt_param.h
+++ b/include/litmus/rt_param.h
@@ -92,6 +92,9 @@ union np_flag {
92struct control_page { 92struct control_page {
93 volatile union np_flag sched; 93 volatile union np_flag sched;
94 94
95 /* locking overhead tracing: time stamp prior to system call */
96 uint64_t ts_syscall_start; /* Feather-Trace cycles */
97
95 /* to be extended */ 98 /* to be extended */
96}; 99};
97 100