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
This commit is contained in:
Yoshinori Sugino 2020-12-04 15:55:23 +09:00 committed by Xiang Xiao
parent 064de6e140
commit a5e00ac3f0

View File

@ -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;