aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus/trace.h
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2011-07-25 15:32:42 -0400
committerChristopher Kenna <cjk@cs.unc.edu>2011-10-10 17:17:01 -0400
commitb1a51931633520901fa771dcf0b7c7d78fe4a304 (patch)
tree74670f9dc3009e5fc21db098e7981ca67318f3d5 /include/litmus/trace.h
parent2c17b8c798aed1a2dd71306c6321a3da88fc9705 (diff)
Feather-Trace: reassign IDs
Diffstat (limited to 'include/litmus/trace.h')
-rw-r--r--include/litmus/trace.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/litmus/trace.h b/include/litmus/trace.h
index d641375bbb04..b7f705dca20b 100644
--- a/include/litmus/trace.h
+++ b/include/litmus/trace.h
@@ -72,6 +72,12 @@ feather_callback void save_timestamp_time(unsigned long event, unsigned long tim
72 * always the next number after the start time event id. 72 * always the next number after the start time event id.
73 */ 73 */
74 74
75#define TS_SYSCALL_IN_START(p) TIMESTAMP_TIME(10, p)
76#define TS_SYSCALL_IN_END TIMESTAMP(11)
77
78#define TS_SYSCALL_OUT_START TIMESTAMP(20)
79#define TS_SYSCALL_OUT_END TIMESTAMP(21)
80
75#define TS_SCHED_START DTIMESTAMP(100, TSK_UNKNOWN) /* we only 81#define TS_SCHED_START DTIMESTAMP(100, TSK_UNKNOWN) /* we only
76 * care 82 * care
77 * about 83 * about
@@ -107,15 +113,9 @@ feather_callback void save_timestamp_time(unsigned long event, unsigned long tim
107#define TS_UNLOCK_START TIMESTAMP(172) 113#define TS_UNLOCK_START TIMESTAMP(172)
108#define TS_UNLOCK_END TIMESTAMP(173) 114#define TS_UNLOCK_END TIMESTAMP(173)
109 115
110#define TS_SYSCALL_IN_START(p) TIMESTAMP_TIME(190, p)
111#define TS_SYSCALL_IN_END TIMESTAMP(191)
112
113#define TS_SYSCALL_OUT_START TIMESTAMP(200)
114#define TS_SYSCALL_OUT_END TIMESTAMP(201)
115
116
117#define TS_SEND_RESCHED_START(c) CTIMESTAMP(190, c) 116#define TS_SEND_RESCHED_START(c) CTIMESTAMP(190, c)
118#define TS_SEND_RESCHED_END DTIMESTAMP(191, TSK_UNKNOWN) 117#define TS_SEND_RESCHED_END DTIMESTAMP(191, TSK_UNKNOWN)
119 118
119#define TS_RELEASE_LATENCY(when) LTIMESTAMP(208, &(when))
120 120
121#endif /* !_SYS_TRACE_H_ */ 121#endif /* !_SYS_TRACE_H_ */