diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-07-30 22:12:30 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-07-30 22:12:30 +0200 |
| commit | fb0e8ee9c6237993c393f3737e528199be41c23c (patch) | |
| tree | 77f2805581337ebd007d72399270d5cd0e2956b7 /src/include | |
| parent | 6a8cc8ace371c0a683fb3f57048be6b642a56187 (diff) | |
| download | box64-fb0e8ee9c6237993c393f3737e528199be41c23c.tar.gz box64-fb0e8ee9c6237993c393f3737e528199be41c23c.zip | |
Change again a bit how jmpbuffer and resuming of signal is handled
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/x64run.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/x64run.h b/src/include/x64run.h index 11f07cfa..b6c9e960 100644 --- a/src/include/x64run.h +++ b/src/include/x64run.h @@ -6,7 +6,7 @@ typedef struct x64emu_s x64emu_t; typedef struct x64test_s x64test_t; int Run(x64emu_t *emu, int step); // 0 if run was successfull, 1 if error in x86 world int RunTest(x64test_t *test); -int DynaRun(x64emu_t *emu); +void DynaRun(x64emu_t *emu); uint32_t LibSyscall(x64emu_t *emu); void PltResolver(x64emu_t* emu); |