about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/bits/types/idtype_t.h
blob: 207eb777ba442c2e67d75095ca8f07f52b42c2c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __idtype_t_defined
#define __idtype_t_defined

/* The following values are used by the `waitid' function.  */
typedef enum
{
  P_ALL,		/* Wait for any child.  */
  P_PID,		/* Wait for specified process.  */
  P_PGID,		/* Wait for members of process group.  */
} idtype_t;

#endif