mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
linux-user: fill out task state in /proc/self/stat
Some programs want to match an actual task state character. Signed-off-by: Andreas Schwab <schwab@suse.de> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <mvmedq2kxoe.fsf@suse.de> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
d2796be69d
commit
25bb27c715
1 changed files with 3 additions and 0 deletions
|
@ -8079,6 +8079,9 @@ static int open_self_stat(CPUArchState *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 == 2) {
|
||||
/* task state */
|
||||
g_string_assign(buf, "R "); /* we are running right now */
|
||||
} else if (i == 3) {
|
||||
/* ppid */
|
||||
g_string_printf(buf, FMT_pid " ", getppid());
|
||||
|
|
Loading…
Reference in a new issue