python: Move various utility classes into a new m5.util package so
authorNathan Binkert <nate@binkert.org>
Sun, 15 Jun 2008 03:19:49 +0000 (20:19 -0700)
committerNathan Binkert <nate@binkert.org>
Sun, 15 Jun 2008 03:19:49 +0000 (20:19 -0700)
commitf82d4e2364e9df683b6891c04efaa861093a50ec
tree07ea1e455a63c632643ef19cc3cfef6259e0beab
parentfe325c7f4341b25cae65cbe529caa0a46140501a
python: Move various utility classes into a new m5.util package so
they're all in the same place.  This also involves having just one
jobfile.py and moving it into the utils directory to avoid
duplication.  Lots of improvements to the utility as well.

--HG--
rename : src/python/m5/attrdict.py => src/python/m5/util/attrdict.py
rename : util/pbs/jobfile.py => src/python/m5/util/jobfile.py
rename : src/python/m5/util.py => src/python/m5/util/misc.py
rename : src/python/m5/multidict.py => src/python/m5/util/multidict.py
rename : util/stats/orderdict.py => src/python/m5/util/orderdict.py
15 files changed:
src/python/SConscript
src/python/m5/SimObject.py
src/python/m5/attrdict.py [deleted file]
src/python/m5/main.py
src/python/m5/multidict.py [deleted file]
src/python/m5/util.py [deleted file]
src/python/m5/util/__init__.py [new file with mode: 0644]
src/python/m5/util/attrdict.py [new file with mode: 0644]
src/python/m5/util/jobfile.py [new file with mode: 0644]
src/python/m5/util/misc.py [new file with mode: 0644]
src/python/m5/util/multidict.py [new file with mode: 0644]
src/python/m5/util/orderdict.py [new file with mode: 0644]
util/batch/jobfile.py [deleted file]
util/pbs/jobfile.py [deleted file]
util/stats/orderdict.py [deleted file]