about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorYang Liu <numbksco@gmail.com>2024-04-30 22:36:48 +0800
committerGitHub <noreply@github.com>2024-04-30 16:36:48 +0200
commit86e9a38384902d4aca09c7d314932d03989726a5 (patch)
tree2f3b04918c17789f5df9ca19ef25a28d292cfc5d /src/include
parent322f97ddbca4c3fba969a354d634f97db5f197cc (diff)
downloadbox64-86e9a38384902d4aca09c7d314932d03989726a5.tar.gz
box64-86e9a38384902d4aca09c7d314932d03989726a5.zip
[COSIM] Added thread-safe tests (#1477)
* [COSIM] Added thread-safe tests

* Added more notest

* Run cosim in CI

* Disable tests for RISC-V for now

* Simplify

* Initialize notest
Diffstat (limited to 'src/include')
-rw-r--r--src/include/dynarec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/dynarec.h b/src/include/dynarec.h
index 64da6041..bf72349c 100644
--- a/src/include/dynarec.h
+++ b/src/include/dynarec.h
@@ -5,7 +5,8 @@ typedef struct x64emu_s x64emu_t;
 
 void DynaCall(x64emu_t* emu, uintptr_t addr); // try to use DynaRec... Fallback to EmuCall if no dynarec available
 
-void x64test_init(x64emu_t* ref, uintptr_t ip);
+void x64test_init();
+void x64test_step(x64emu_t* ref, uintptr_t ip);
 void x64test_check(x64emu_t* ref, uintptr_t ip);
 
 #endif // __DYNAREC_H_
\ No newline at end of file