diff options
author | Rick Strong <rstrong@cs.ucsd.edu> | 2008-02-27 00:35:09 -0500 |
---|---|---|
committer | Rick Strong <rstrong@cs.ucsd.edu> | 2008-02-27 00:35:09 -0500 |
commit | fcfc8b8c4ff98d69aa15fba60e723a9a1c4cda42 (patch) | |
tree | 43d7c82e1a39b7f4c38f390d100d52f1680bec85 /src/sim/Process.py | |
parent | 43ecce5fda625e057724d10e087180b02d027ca0 (diff) | |
download | gem5-fcfc8b8c4ff98d69aa15fba60e723a9a1c4cda42.tar.xz |
Configs: Make using Simpoints easier with some config files that support them easily
--HG--
extra : convert_revision : 0f21829306eb68b332f03da410e6c341c8595bdd
Diffstat (limited to 'src/sim/Process.py')
-rw-r--r-- | src/sim/Process.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sim/Process.py b/src/sim/Process.py index 07ed2c692..37a27bf3b 100644 --- a/src/sim/Process.py +++ b/src/sim/Process.py @@ -1,4 +1,4 @@ -# Copyright (c) 2005-2007 The Regents of The University of Michigan +# Copyright (c) 2005-2008 The Regents of The University of Michigan # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -50,3 +50,4 @@ class LiveProcess(Process): egid = Param.Int(100, 'effective group id') pid = Param.Int(100, 'process id') ppid = Param.Int(99, 'parent process id') + simpoint = Param.UInt64(0, 'simulation point at which to start simulation') |