From a5e00ac3f088cc1eb7d83e367c9df09148c854c2 Mon Sep 17 00:00:00 2001 From: Yoshinori Sugino Date: Fri, 4 Dec 2020 15:55:23 +0900 Subject: [PATCH] include/sys/wait.h: Modify P_GID to P_PGID Summary: - Follow the POSIX description. Impact: - No impact as P_GID and P_PGID are not used. Testing: - Built with hifive1-revb:nsh --- include/sys/wait.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sys/wait.h b/include/sys/wait.h index b305f79b13..3240ec4e28 100644 --- a/include/sys/wait.h +++ b/include/sys/wait.h @@ -86,7 +86,7 @@ enum idtype_e { P_PID = 1, - P_GID = 2, + P_PGID = 2, P_ALL = 3 }; typedef enum idtype_e idtype_t;