aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2007-05-16 16:36:52 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2007-05-16 16:36:52 -0400
commitd7ea89b8dcb5e9747c755a8a922e911742d90bd9 (patch)
treef88b3eac1602ee720e4a900cdda21c358ff9d65d /include/linux
parent8eebf9bcc51f9c3313487c16df43fcecc2e306f5 (diff)
Place trigger for scheduling overhead benchmark.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/trace.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/linux/trace.h b/include/linux/trace.h
index 0d05e6eda2..e241ed45be 100644
--- a/include/linux/trace.h
+++ b/include/linux/trace.h
@@ -30,12 +30,14 @@ asmlinkage void save_timestamp(unsigned long event);
30 * ========================= 30 * =========================
31 * 31 *
32 * In order to process the trace files with a common tool, we use the following 32 * In order to process the trace files with a common tool, we use the following
33 * convention to measure execution times. The start time of a code segment has 33 * convention to measure execution times: The end time id of a code segment is
34 * an even event ID, the corresponding end time has the consecutive odd ID. 34 * always the next number after the start time event id.
35 */ 35 */
36 36
37#define TS_SCHED_START TIMESTAMP(100) 37#define TS_SCHED_START TIMESTAMP(100)
38#define TS_SCHED_END TIMESTAMP(101) 38#define TS_SCHED_END TIMESTAMP(101)
39#define TS_CXS_START TIMESTAMP(102)
40#define TS_CXS_END TIMESTAMP(103)
39 41
40#define TS_TICK_START TIMESTAMP(110) 42#define TS_TICK_START TIMESTAMP(110)
41#define TS_TICK_END TIMESTAMP(111) 43#define TS_TICK_END TIMESTAMP(111)