diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2010-06-03 16:54:26 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2010-06-03 16:54:26 -0700 |
commit | f92e91e85309e9dcfd0b3c5a8e4faa460d921b7f (patch) | |
tree | b0b0362e50679e753bbd7db4aafce8376d8571e2 /src/python/m5 | |
parent | 4a3ce94386da669e82e1fd32fb201e2c9385938e (diff) | |
download | gem5-f92e91e85309e9dcfd0b3c5a8e4faa460d921b7f.tar.xz |
Minor remote GDB cleanup.
Expand the help text on the --remote-gdb-port option so
people know you can use it to disable remote gdb without
reading the source code, and thus don't waste any time
trying to add a separate option to do that.
Clean up some gdb-related cruft I found while looking
for where one would add a gdb disable option, before
I found the comment that told me that I didn't need
to do that.
Diffstat (limited to 'src/python/m5')
-rw-r--r-- | src/python/m5/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index 29f8cc976..fd58ce500 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -101,7 +101,7 @@ set_group("Debugging Options") add_option("--debug-break", metavar="TIME[,TIME]", action='append', split=',', help="Cycle to create a breakpoint") add_option("--remote-gdb-port", type='int', default=7000, - help="Remote gdb base port") + help="Remote gdb base port (set to 0 to disable listening)") # Tracing options set_group("Trace Options") |