main.py (11418:0aeca8f47eac) main.py (11431:871eaaa0ab24)
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 77 unchanged lines hidden (view full) ---

86 # Configuration Options
87 group("Configuration Options")
88 option("--dump-config", metavar="FILE", default="config.ini",
89 help="Dump configuration output file [Default: %default]")
90 option("--json-config", metavar="FILE", default="config.json",
91 help="Create JSON output of the configuration [Default: %default]")
92 option("--dot-config", metavar="FILE", default="config.dot",
93 help="Create DOT & pdf outputs of the configuration [Default: %default]")
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 77 unchanged lines hidden (view full) ---

86 # Configuration Options
87 group("Configuration Options")
88 option("--dump-config", metavar="FILE", default="config.ini",
89 help="Dump configuration output file [Default: %default]")
90 option("--json-config", metavar="FILE", default="config.json",
91 help="Create JSON output of the configuration [Default: %default]")
92 option("--dot-config", metavar="FILE", default="config.dot",
93 help="Create DOT & pdf outputs of the configuration [Default: %default]")
94 option("--dot-dvfs-config", metavar="FILE", default="config_dvfs.dot",
94 option("--dot-dvfs-config", metavar="FILE", default=None,
95 help="Create DOT & pdf outputs of the DVFS configuration" + \
96 " [Default: %default]")
97
98 # Debugging options
99 group("Debugging Options")
100 option("--debug-break", metavar="TICK[,TICK]", action='append', split=',',
101 help="Create breakpoint(s) at TICK(s) " \
102 "(kills process if no debugger attached)")

--- 314 unchanged lines hidden ---
95 help="Create DOT & pdf outputs of the DVFS configuration" + \
96 " [Default: %default]")
97
98 # Debugging options
99 group("Debugging Options")
100 option("--debug-break", metavar="TICK[,TICK]", action='append', split=',',
101 help="Create breakpoint(s) at TICK(s) " \
102 "(kills process if no debugger attached)")

--- 314 unchanged lines hidden ---