diff options
author | Jeremy Erickson <jerickso@cs.unc.edu> | 2013-01-28 22:27:46 -0500 |
---|---|---|
committer | Jeremy Erickson <jerickso@cs.unc.edu> | 2013-01-28 22:27:46 -0500 |
commit | 2991502a5b655f7313a6f2ad10ad1004b1285a9d (patch) | |
tree | ec4089bd0e4ccc0c81af0dc65221671da5020214 | |
parent | ae15178f76931989215905fbfb86eabe5aa8de00 (diff) |
Support for measurement code from bbbdiss
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | include/litmus/rt_param.h | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 3 | 1 | VERSION = 3 |
2 | PATCHLEVEL = 0 | 2 | PATCHLEVEL = 0 |
3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
4 | EXTRAVERSION =-litmus | 4 | EXTRAVERSION =-litmus2012.2-splitting-jerickso |
5 | NAME = Sneaky Weasel | 5 | NAME = 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 { | |||
92 | struct control_page { | 92 | struct 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 | ||