about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-07-30 22:12:30 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-07-30 22:12:30 +0200
commitfb0e8ee9c6237993c393f3737e528199be41c23c (patch)
tree77f2805581337ebd007d72399270d5cd0e2956b7 /src/include
parent6a8cc8ace371c0a683fb3f57048be6b642a56187 (diff)
downloadbox64-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.h2
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);