diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-02-21 22:14:11 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-02-21 22:14:11 -0800 |
commit | fa4c3d74fe7eb9627119d17542fbde18eb10423e (patch) | |
tree | 4ed4320fb59c5839057e472446313734daab5858 /configs | |
parent | 783e642ed8cf45e65ddb7a47f5bd2c34df1900cd (diff) | |
download | gem5-fa4c3d74fe7eb9627119d17542fbde18eb10423e.tar.xz |
Get rid of the ConsoleListener SimObject and just fold the
relevant code directly into the SimConsole object. Now,
you can easily turn off the listen port by just specifying
0 as the port.
--HG--
extra : convert_revision : c8937fa45b429d8a0728e6c720a599e38972aaf0
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/FSConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index c341b762a..2b13388d6 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -78,7 +78,7 @@ def makeLinuxAlphaSystem(mem_mode, mdesc = None): read_only = True)) self.intrctrl = IntrControl() self.mem_mode = mem_mode - self.sim_console = SimConsole(listener=ConsoleListener(port=3456)) + self.sim_console = SimConsole() self.kernel = binary('vmlinux') self.pal = binary('ts_osfpal') self.console = binary('console') |