diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-09 17:57:16 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-09 11:57:16 +0200 |
| commit | d0a5352c1a34fded2c6b77f63283711b5a93f88b (patch) | |
| tree | c8790a4d245a6a82bf2fa82d6a3c5dc9fdd35eb7 /src/os/os_linux.c | |
| parent | 7391befb7e72227cd7ac390f7695713a5d8442bd (diff) | |
| download | box64-d0a5352c1a34fded2c6b77f63283711b5a93f88b.tar.gz box64-d0a5352c1a34fded2c6b77f63283711b5a93f88b.zip | |
Moved emit functions to seperate files from signals.h (#2516)
Diffstat (limited to 'src/os/os_linux.c')
| -rw-r--r-- | src/os/os_linux.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/os/os_linux.c b/src/os/os_linux.c index e11a41a2..daef3807 100644 --- a/src/os/os_linux.c +++ b/src/os/os_linux.c @@ -19,21 +19,6 @@ int SchedYield(void) return sched_yield(); } -void EmitSignal(void* emu, int sig, void* addr, int code) -{ - return emit_signal((x64emu_t*)emu, sig, addr, code); -} - -void EmitDiv0(void* emu, void* addr, int code) -{ - return emit_div0((x64emu_t*)emu, addr, code); -} - -void EmitInterruption(void* emu, int num, void* addr) -{ - return emit_interruption((x64emu_t*)emu, num, addr); -} - int IsBridgeSignature(char s, char c) { return s == 'S' && c == 'C'; |