From 49cc5eabcbcebdd6a67bfa32a82caf1723997d78 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 23 Jul 2025 11:13:28 +0200 Subject: Some handling of case where signal numbers differs between native and x64 archs (not complete, missing sigset conversions) --- src/wrapped32/wrappedlibc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wrapped32') diff --git a/src/wrapped32/wrappedlibc.c b/src/wrapped32/wrappedlibc.c index 004a99ca..618c8a3f 100755 --- a/src/wrapped32/wrappedlibc.c +++ b/src/wrapped32/wrappedlibc.c @@ -3370,7 +3370,7 @@ EXPORT int my32_waitid(x64emu_t* emu, uint32_t idtype, uint32_t id, void* siginf { siginfo_t siginfo_l; int ret = waitid(idtype, id, siginfo?(&siginfo_l):NULL, options); - convert_siginfo_to_32(siginfo, &siginfo_l, SIGCHLD); + convert_siginfo_to_32(siginfo, &siginfo_l, X64_SIGCHLD); return ret; } -- cgit 1.4.1