diff options
-rw-r--r-- | include/timestamp.h | 2 | ||||
-rw-r--r-- | src/timestamp.c | 1 |
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), |