From afed455e777348596db9ff9786d6dae03a956c89 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 13 Nov 2006 12:20:08 -0800 Subject: Expose debugBreakCycle through swig and get rid of the Debug param context --HG-- extra : convert_revision : 40e9dcfa9faedbe0c90a43f908f20a7c14ded6a4 --- src/python/swig/debug.i | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/python/swig/debug.i (limited to 'src/python/swig/debug.i') diff --git a/src/python/swig/debug.i b/src/python/swig/debug.i new file mode 100644 index 000000000..8da2974ca --- /dev/null +++ b/src/python/swig/debug.i @@ -0,0 +1,19 @@ +%module debug + +%{ +// include these files when compiling debug_wrap.cc +#include "sim/host.hh" +%} + +%include "stdint.i" +%include "sim/host.hh" + +%inline %{ +extern void schedBreakCycle(Tick when); +%} + +%wrapper %{ +// fix up module name to reflect the fact that it's inside the m5 package +#undef SWIG_name +#define SWIG_name "m5.internal._debug" +%} -- cgit v1.2.3