aboutsummaryrefslogtreecommitdiffstats
path: root/config/config.py
diff options
context:
space:
mode:
authorBryan Ward <bcw@cs.unc.edu>2013-04-18 16:12:06 -0400
committerBryan Ward <bcw@cs.unc.edu>2013-04-18 16:12:06 -0400
commite1eed1bc02642210a53618147cd55c180bc716ca (patch)
treea9ee92fc5354da0e620571feb639ebf58298dc27 /config/config.py
parentb8f3c7a1ccd2fffc54f15e808505a568ce5fa492 (diff)
Updated config and parsing.
Diffstat (limited to 'config/config.py')
-rw-r--r--config/config.py4
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
3from common import get_executable_hint,ft_freq 3from common import get_executable_hint,ft_freq
4 4
5'''Paths to binaries.''' 5'''Paths to binaries.'''
6BINS = {'rtspin' : get_executable_hint('rtspin', 'liblitmus'), 6BINS = {'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',
45SCHED_EVENTS = range(501, 513) 45SCHED_EVENTS = range(501, 513)
46 46
47'''Overhead events.''' 47'''Overhead events.'''
48OVH_BASE_EVENTS = ['SCHED', 'RELEASE', 'SCHED2', 'TICK', 'CXS'] 48OVH_BASE_EVENTS = ['SCHED', 'RELEASE', 'SCHED2', 'TICK', 'CXS', 'LOCK', 'UNLOCK']
49OVH_ALL_EVENTS = ["%s_%s" % (e, t) for (e,t) in 49OVH_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"])]
51OVH_ALL_EVENTS += ['RELEASE_LATENCY'] 51OVH_ALL_EVENTS += ['RELEASE_LATENCY']