diff options
| author | Ajax <commial@gmail.com> | 2018-06-22 17:27:30 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-06-22 18:34:07 +0200 |
| commit | c33f2d988bda28a1b6dbe5a2c8bceb5819db9e42 (patch) | |
| tree | b05c169e5ff17c800a2692e0d0ddc09bb34fb881 /miasm2/jitter/jitcore_python.py | |
| parent | f5aa0474bd7ea8078bacf0085ff6942d1cf3bc42 (diff) | |
| download | focaccia-miasm-c33f2d988bda28a1b6dbe5a2c8bceb5819db9e42.tar.gz focaccia-miasm-c33f2d988bda28a1b6dbe5a2c8bceb5819db9e42.zip | |
Jitcore: run_at actually takes a list of stop_offset, instead of a
"breakpoints" specificity
Diffstat (limited to 'miasm2/jitter/jitcore_python.py')
| -rw-r--r-- | miasm2/jitter/jitcore_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/jitcore_python.py b/miasm2/jitter/jitcore_python.py index 1f753b07..45b418b5 100644 --- a/miasm2/jitter/jitcore_python.py +++ b/miasm2/jitter/jitcore_python.py @@ -131,7 +131,7 @@ class JitCore_Python(jitcore.JitCore): assert offset is not None self.offset_to_jitted_func[offset] = myfunc - def exec_wrapper(self, loc_key, cpu, _offset_to_jitted_func, _breakpoints, + def exec_wrapper(self, loc_key, cpu, _offset_to_jitted_func, _stop_offsets, _max_exec_per_call): """Call the function @loc_key with @cpu @loc_key: function's loc_key |