From: Nathan Binkert Date: Wed, 3 Jan 2007 18:16:22 +0000 (-0800) Subject: set __name__ in the root m5 script to __m5_main__ so we can X-Git-Tag: m5_2.0_beta3~224^2~22 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e6b4fed75d8b1044835bfbef77934b9a47bb2680;p=gem5.git set __name__ in the root m5 script to __m5_main__ so we can tell if the script is run from m5 as the m5 script --HG-- extra : convert_revision : 06f646cbb8c82444ef345115aa49324a4d3a2c9f --- diff --git a/src/python/m5/main.py b/src/python/m5/main.py index 114c668a6..5df6d03cf 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -304,7 +304,8 @@ def main(): sys.argv = arguments sys.path = [ os.path.dirname(sys.argv[0]) ] + sys.path - scope = { '__file__' : sys.argv[0] } + scope = { '__file__' : sys.argv[0], + '__name__' : '__m5_main__' } # we want readline if we're doing anything interactive if options.interactive or options.pdb: