Reverting pid_t type change (this was breaking code that considers pid_t as signed)

This commit is contained in:
Manoj Ampalam 2016-09-23 12:20:17 -07:00
parent 0f1fcb322a
commit 52525ad938

View File

@ -70,7 +70,9 @@ typedef int sigset_t;
typedef unsigned short _mode_t;
typedef _mode_t mode_t;
typedef DWORD_PTR pid_t;
/* TODO - investigate if it makes sense to make pid_t a DWORD_PTR.
* Double check usage of pid_t as int */
typedef int pid_t;
/* wait pid options */
#define WNOHANG 1