When stracing a program, show up the SIGCHLD value the same way as it's done when running strace natively, e.g.: clone(child_stack=0xf7af0040, flags=CLONE_VM|CLONE_VFORK|SIGCHLD, ...
Signed-off-by: Helge Deller <del...@gmx.de> --- linux-user/strace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-user/strace.c b/linux-user/strace.c index 82dc1a1e20..3157e4b420 100644 --- a/linux-user/strace.c +++ b/linux-user/strace.c @@ -1136,6 +1136,7 @@ UNUSED static struct flags clone_flags[] = { #if defined(CLONE_IO) FLAG_GENERIC(CLONE_IO), #endif + FLAG_TARGET(SIGCHLD), FLAG_END, }; -- 2.38.1