diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2014-01-17 16:53:05 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2014-01-17 16:53:05 -0500 |
commit | a12e11ba151e058c79b79432a18bba1e8946f336 (patch) | |
tree | 63be5aab3e0afda3da431e7dab0d50e80012a494 | |
parent | 1e7eade9baeb53fc629cc2db98367897d0fd7b13 (diff) |
Correct Litmus sched trace IDs
-rw-r--r-- | config/config.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/config/config.py b/config/config.py index f2d068c..5196228 100644 --- a/config/config.py +++ b/config/config.py | |||
@@ -53,16 +53,16 @@ DEFAULTS = {'duration' : 10, | |||
53 | # task name - 501 | 53 | # task name - 501 |
54 | # task param - 502 | 54 | # task param - 502 |
55 | # release - 503 | 55 | # release - 503 |
56 | # switch to - 504 | 56 | # switch to - 505 |
57 | # switch from - 505 | 57 | # switch from - 506 |
58 | # job completion - 506 | 58 | # job completion - 507 |
59 | # block - 507 | 59 | # block - 508 |
60 | # resume - 508 | 60 | # resume - 509 |
61 | # action - 509 | 61 | # action - 510 |
62 | # sys release - 510 | 62 | # sys release - 511 |
63 | # pgm param - 511 | 63 | # pgm param - 512 |
64 | # pgm release - 512 | 64 | # pgm release - 513 |
65 | SCHED_EVENTS = [501, 502, 503, 506, 510, 511, 512] | 65 | SCHED_EVENTS = [501, 502, 503, 507, 511, 512, 513] |
66 | 66 | ||
67 | '''Overhead events.''' | 67 | '''Overhead events.''' |
68 | OVH_BASE_EVENTS = ['SCHED', 'RELEASE', 'SCHED2', 'TICK', 'CXS', 'LOCK', 'UNLOCK'] | 68 | OVH_BASE_EVENTS = ['SCHED', 'RELEASE', 'SCHED2', 'TICK', 'CXS', 'LOCK', 'UNLOCK'] |