aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2014-06-07 05:19:15 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2014-06-07 05:19:15 -0400
commit13861f451170ff6de60f9cf53b75f5d33a9290fd (patch)
tree34f92ff291ae66e32e18ddcf0998f953b9b95903
parentacea569078b62c6af0e278573a7707d67c5809c5 (diff)
Add support for QUANTUM_BOUNDARY_{START,END}
-rw-r--r--include/timestamp.h2
-rw-r--r--src/timestamp.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/include/timestamp.h b/include/timestamp.h
index 1668bcb..b7b79c4 100644
--- a/include/timestamp.h
+++ b/include/timestamp.h
@@ -76,6 +76,8 @@ const char* task_type2str(int task_type);
76 76
77#define TS_TICK_START TIMESTAMP(110) 77#define TS_TICK_START TIMESTAMP(110)
78#define TS_TICK_END TIMESTAMP(111) 78#define TS_TICK_END TIMESTAMP(111)
79#define TS_QUANTUM_BOUNDARY_START TIMESTAMP(112)
80#define TS_QUANTUM_BOUNDARY_END TIMESTAMP(113)
79 81
80#define TS_PLUGIN_SCHED_START TIMESTAMP(120) 82#define TS_PLUGIN_SCHED_START TIMESTAMP(120)
81#define TS_PLUGIN_SCHED_END TIMESTAMP(121) 83#define TS_PLUGIN_SCHED_END TIMESTAMP(121)
diff --git a/src/timestamp.c b/src/timestamp.c
index 16edc43..72ba9b4 100644
--- a/src/timestamp.c
+++ b/src/timestamp.c
@@ -17,6 +17,7 @@ static struct event_name event_table[] =
17 EVENT(SCHED), 17 EVENT(SCHED),
18 EVENT(SCHED2), 18 EVENT(SCHED2),
19 EVENT(TICK), 19 EVENT(TICK),
20 EVENT(QUANTUM_BOUNDARY),
20 EVENT(RELEASE), 21 EVENT(RELEASE),
21 EVENT(PLUGIN_SCHED), 22 EVENT(PLUGIN_SCHED),
22 EVENT(PLUGIN_TICK), 23 EVENT(PLUGIN_TICK),