From 5ef64e006c200e7213ae3cc52cb02bd172bfe97d Mon Sep 17 00:00:00 2001 From: "Bjoern B. Brandenburg" Date: Thu, 22 May 2008 12:44:51 -0400 Subject: another kernel data format change don't use timestamps that did not involve a real-time task --- include/timestamp.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/timestamp.h b/include/timestamp.h index ec16d04..b3393ed 100644 --- a/include/timestamp.h +++ b/include/timestamp.h @@ -3,11 +3,18 @@ #include +enum task_type_marker { + TSK_BE, + TSK_RT, + TSK_UNKNOWN +}; + struct timestamp { uint64_t timestamp; uint32_t seq_no; - uint16_t cpu; - uint16_t event; + uint8_t cpu; + uint8_t event; + uint8_t task_type; }; typedef uint32_t cmd_t; -- cgit v1.2.2