summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-01-17 23:41:35 -0500
committerNathan Binkert <binkertn@umich.edu>2005-01-17 23:41:35 -0500
commit82df189bad55fcfc91cc305617bf65c4db9416b6 (patch)
tree7efddef763ebd2c39dd33862d0a1e8ac34a70eed /sim
parentcc4e4ab7e1fdb83bfc58079753f5c2af15f405c6 (diff)
downloadgem5-82df189bad55fcfc91cc305617bf65c4db9416b6.tar.xz
Config cleanups
sim/pyconfig/m5config.py: Remove unused code remove the defined() function that was masking the one that I really wanted test/genini.py: Add the directory that a script was executed from to the path --HG-- extra : convert_revision : a1861065b2de46d77c94691d0c5a7865cdce0f09
Diffstat (limited to 'sim')
-rw-r--r--sim/pyconfig/m5config.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/sim/pyconfig/m5config.py b/sim/pyconfig/m5config.py
index 39c2be7ab..d7c0c6507 100644
--- a/sim/pyconfig/m5config.py
+++ b/sim/pyconfig/m5config.py
@@ -46,30 +46,6 @@ class Singleton(type):
cls._instance = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instance
-#class MetaTempObject(type):
-# classes = {}
-# def __new__(mcls, name, bases, dict):
-# _bases = []
-# for base in bases:
-# if base.__name__ is 'TempObject':
-# _bases.append('SimObject')
-# else:
-# _bases.append(base.__name__)
-# newdict = { '_bases' : _bases, '_name' : name, '_params' : dict }
-# cls = type.__new__(mcls, name, bases, newdict)
-# mcls.classes[name] = cls
-# return cls
-#
-#class TempObject(object):
-# __metaclass__ = MetaTempObject
-
-def defined(s):
- try:
- eval(s)
- return True
- except NameError:
- return False
-
if os.environ.has_key('FULL_SYSTEM'):
FULL_SYSTEM = True