From: Andreas Schwab Date: Mon, 21 Jun 2021 09:32:59 +0000 (+0200) Subject: linux-user: fill ppid field in /proc/self/stat X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7aa9fe3a520266cbbe16c249381fe542f9e4c6a4;p=qemu.git linux-user: fill ppid field in /proc/self/stat Signed-off-by: Andreas Schwab Reviewed-by: Laurent Vivier Message-Id: Signed-off-by: Laurent Vivier --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 64bbf331b2..3bc06d178e 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -7956,6 +7956,9 @@ static int open_self_stat(void *cpu_env, int fd) gchar *bin = g_strrstr(ts->bprm->argv[0], "/"); bin = bin ? bin + 1 : ts->bprm->argv[0]; g_string_printf(buf, "(%.15s) ", bin); + } else if (i == 3) { + /* ppid */ + g_string_printf(buf, FMT_pid " ", getppid()); } else if (i == 27) { /* stack bottom */ g_string_printf(buf, TARGET_ABI_FMT_ld " ", ts->info->start_stack);