#include <qp0wpid.h> int Qp0wChkChld(QP0W_PID_Entries_T *chldinfo);
The Qp0wChkChld() function returns the status and process table entry information for the child processes of the specified process ID.
The structure QP0W_PID_Entry_T is defined in the <qp0wpid.h> header file as follows:
typedef struct QP0W_PID_Entries_T { int entries_prov; int entries_could; int entries_return; pid_t pid; QP0W_PID_Data_T entry[1]; } QP0W_PID_Entries_T;
The members of the QP0W_PID_Entry_T structure are as follows:
int entries_prov; | (Input) The number of entries of type
QP0W_PID_Data_T for which that the caller has allocated storage to
contain the status and process table entry information. |
int entries_could; | (Output) The number of entries of type QP0W_PID_Data_T that could be returned. If the entries_could value exceeds the entries_prov value, the Qp0wChkChld() function should be called again with sufficient storage to contain the number of entries returned in entries_could (entries_prov must be greater than or equal to entries_could). |
int entries_return; | (Output) The number of entries of type QP0W_PID_Data_T that were returned. If the entries_return value is less than the entries_prov value, the content of the excess number of entries provided is unchanged by Qp0wChkChld(). |
pid_t pid; | (Input) The process ID of the process for which
information about its child processes is to be returned. |
QP0W_PID_Data_T entry[1]; | (Output) The process table information for child processes. There is one QP0W_PID_Data_T structure entry for each child process, limited by the value of entries_prov. |
The structure QP0W_PID_Data_T is defined in the <qp0wpid.h> header file as follows:
typedef struct QP0W_PID_Data_T { pid_t pid; pid_t ppid; pid_t pgrp; int status; unsigned int exit_status; } QP0W_PID_Data_T;
The members of the QP0W_PID_Data_T structure are as follows:
pid_t pid; | The process ID of the process. | ||||||||
pid_t ppid; | The process ID of the parent process. If ppid has a value of binary 1, there is no parent process associated with the process. | ||||||||
pid_t pgrp; | The process group ID of the process. | ||||||||
int status; | A collection of flag bits that describe the
current state of the process. The following flag bits can be set in
status:
|
||||||||
unsigned int exit_status; | Exit status of the process. This member only has meaning if the status has been set to QP0W_PID_TERMINATED. Refer to the wait() function for a description of the exit status for a process. |
The process calling Qp0wChkChld() must have the appropriate authority to the process being examined. A process is allowed to examine the process table information for a process if at least one of the following conditions is true:
0 | Qp0wChkChld() was successful. | ||||||
value | Qp0wChkChld() was not
successful. The value returned indicates one of the following errors. Under
some conditions, value could indicate an error other than those listed
here.
|
The Qp0wChkChld() function provides an i5/OS-specific way to obtain the process table information for the child processes of the specified process.
Top | UNIX-Type APIs | APIs by category |