diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-12-21 22:38:50 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-12-21 22:38:50 -0800 |
commit | ecd1420341f6d96bd485cedf9b08a809d7e99176 (patch) | |
tree | e0d83a6c9f0ef1484747fd74b120541fd8f3c756 /src/python/SConscript | |
parent | ba191d85c274934142430c1522a10ecdbc78d4f6 (diff) | |
download | gem5-ecd1420341f6d96bd485cedf9b08a809d7e99176.tar.xz |
Expose the C++ event queue to python via the python function
m5.internal.event.create(). It takes a python object and a
Tick and calls process() when the Tick occurs.
--HG--
extra : convert_revision : 5e4c9728982b206163ff51e6850a1497d85ad7a3
Diffstat (limited to 'src/python/SConscript')
-rw-r--r-- | src/python/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/python/SConscript b/src/python/SConscript index 1e49a18b2..df1464809 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -107,6 +107,7 @@ def swig_it(basename): swig_it('main') swig_it('debug') +swig_it('event') # Action function to build the zip archive. Uses the PyZipFile module # included in the standard Python library. |