aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-22 11:02:58 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-22 11:02:58 -0400
commit05684bf81966b173b9387a06a72a36c8a047eba5 (patch)
tree52d671a49488eeda72701d9eed925caf70043881 /include
parent4ab1f834b1d0fd79fc029c4073b42d7aa6ed8260 (diff)
Feather-Trace: use fixed size fields
Diffstat (limited to 'include')
-rw-r--r--include/litmus/trace.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/litmus/trace.h b/include/litmus/trace.h
index c340d4408d..ad7a782a97 100644
--- a/include/litmus/trace.h
+++ b/include/litmus/trace.h
@@ -10,10 +10,10 @@
10/*********************** TIMESTAMPS ************************/ 10/*********************** TIMESTAMPS ************************/
11 11
12struct timestamp { 12struct timestamp {
13 unsigned long event; 13 uint64_t timestamp;
14 unsigned long long timestamp; 14 uint32_t seq_no;
15 unsigned int seq_no; 15 uint16_t cpu;
16 int cpu; 16 uint16_t event;
17}; 17};
18 18
19 19