Skip to content

Commit

Permalink
[BOX32] Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Dec 31, 2024
1 parent 1d20968 commit 80a4b61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libtools/signal32.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ void my32_sigactionhandler(int32_t sig, siginfo_t* info, void * ucntx)
void* db = NULL;
#endif

my_sigactionhandler_oldcode_32(sig, 0, info, ucntx, NULL, db);
my_sigactionhandler_oldcode_32(NULL, sig, 0, info, ucntx, NULL, db);
}


Expand Down
2 changes: 1 addition & 1 deletion src/libtools/signals.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ int sigbus_specialcases(siginfo_t* info, void * ucntx, void* pc, void* _fpsimd)
}

#ifdef BOX32
void my_sigactionhandler_oldcode_32(ix64emu_t* emu, nt32_t sig, int simple, siginfo_t* info, void * ucntx, int* old_code, void* cur_db);
void my_sigactionhandler_oldcode_32(x64emu_t* emu, int32_t sig, int simple, siginfo_t* info, void * ucntx, int* old_code, void* cur_db);
#endif
void my_sigactionhandler_oldcode_64(x64emu_t* emu, int32_t sig, int simple, siginfo_t* info, void * ucntx, int* old_code, void* cur_db)
{
Expand Down

0 comments on commit 80a4b61

Please sign in to comment.