diff options
author | Bryan Ward <bcw@cs.unc.edu> | 2013-04-18 16:12:06 -0400 |
---|---|---|
committer | Bryan Ward <bcw@cs.unc.edu> | 2013-04-18 16:12:06 -0400 |
commit | e1eed1bc02642210a53618147cd55c180bc716ca (patch) | |
tree | a9ee92fc5354da0e620571feb639ebf58298dc27 /config/config.py | |
parent | b8f3c7a1ccd2fffc54f15e808505a568ce5fa492 (diff) |
Updated config and parsing.
Diffstat (limited to 'config/config.py')
-rw-r--r-- | config/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.py b/config/config.py index cbac6b2..eed3648 100644 --- a/config/config.py +++ b/config/config.py | |||
@@ -3,7 +3,7 @@ import itertools | |||
3 | from common import get_executable_hint,ft_freq | 3 | from common import get_executable_hint,ft_freq |
4 | 4 | ||
5 | '''Paths to binaries.''' | 5 | '''Paths to binaries.''' |
6 | BINS = {'rtspin' : get_executable_hint('rtspin', 'liblitmus'), | 6 | BINS = {'rtspin' : get_executable_hint('rtspin', 'liblitmus', True), |
7 | 'release' : get_executable_hint('release_ts', 'liblitmus'), | 7 | 'release' : get_executable_hint('release_ts', 'liblitmus'), |
8 | 'ftcat' : get_executable_hint('ftcat', 'feather-trace-tools'), | 8 | 'ftcat' : get_executable_hint('ftcat', 'feather-trace-tools'), |
9 | 'ftsplit' : get_executable_hint('ft2csv', 'feather-trace-tools'), | 9 | 'ftsplit' : get_executable_hint('ft2csv', 'feather-trace-tools'), |
@@ -45,7 +45,7 @@ DEFAULTS = {'params_file' : 'params.py', | |||
45 | SCHED_EVENTS = range(501, 513) | 45 | SCHED_EVENTS = range(501, 513) |
46 | 46 | ||
47 | '''Overhead events.''' | 47 | '''Overhead events.''' |
48 | OVH_BASE_EVENTS = ['SCHED', 'RELEASE', 'SCHED2', 'TICK', 'CXS'] | 48 | OVH_BASE_EVENTS = ['SCHED', 'RELEASE', 'SCHED2', 'TICK', 'CXS', 'LOCK', 'UNLOCK'] |
49 | OVH_ALL_EVENTS = ["%s_%s" % (e, t) for (e,t) in | 49 | OVH_ALL_EVENTS = ["%s_%s" % (e, t) for (e,t) in |
50 | itertools.product(OVH_BASE_EVENTS, ["START","END"])] | 50 | itertools.product(OVH_BASE_EVENTS, ["START","END"])] |
51 | OVH_ALL_EVENTS += ['RELEASE_LATENCY'] | 51 | OVH_ALL_EVENTS += ['RELEASE_LATENCY'] |