diff mbox series

linux-user: fill out task state in /proc/self/stat

Message ID mvmedq2kxoe.fsf@suse.de
State New
Headers show
Series linux-user: fill out task state in /proc/self/stat | expand

Commit Message

Andreas Schwab March 6, 2023, 9:59 a.m. UTC
Some programs want to match an actual task state character.

Signed-off-by: Andreas Schwab <schwab@suse.de>
---
 linux-user/syscall.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Laurent Vivier March 6, 2023, 10:59 a.m. UTC | #1
Le 06/03/2023 à 10:59, Andreas Schwab a écrit :
> Some programs want to match an actual task state character.
> 
> Signed-off-by: Andreas Schwab <schwab@suse.de>
> ---
>   linux-user/syscall.c | 3 +++
>   1 file changed, 3 insertions(+)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 36fffd36ca..eb4c2c3162 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -8127,6 +8127,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());

Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Laurent Vivier March 7, 2023, 2:16 p.m. UTC | #2
Le 06/03/2023 à 10:59, Andreas Schwab a écrit :
> Some programs want to match an actual task state character.
> 
> Signed-off-by: Andreas Schwab <schwab@suse.de>
> ---
>   linux-user/syscall.c | 3 +++
>   1 file changed, 3 insertions(+)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 36fffd36ca..eb4c2c3162 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -8127,6 +8127,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());

Applied to my linux-user-for-8.0 branch.

Thanks,
Laurent
diff mbox series

Patch

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 36fffd36ca..eb4c2c3162 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -8127,6 +8127,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());