Reclaim kernel space resources wait function waitid Function

Source: Internet
Author: User

Abstract: This article describes how to reclaim the kernel space resources and how to use wait and waitid functions and their differences.

Reclaim kernel space resources wait and waitid Functions

The user space resources are released when the process exits, but the PCB of the process is not released. This is not done by yourself, but by the parent process of the current process.
When a process Exits normally or unexpectedly, the kernel sends a sigchld signal to its parent process. because the termination of a sub-process is an asynchronous event, this signal is also an asynchronous notification sent by the kernel to the parent process. the parent process can choose to ignore this signal (if the parent process sets the sa_nocldwait flag bit (sa_nocldwait: causes the parent process to not receive the sigchld signal when its child process exits ), or provide a function that is called when the signal occurs. The parent process can call the wait () and waitpid () functions explicitly.

1. The wait () and waitid () functions wait until the child process ends. Function Definition:
# Include <sys/types. h>
# Include <sys/Wait. H>
Pid_t wait (int * status );
Pid_t waitpid (pid_t PID, int * status, int options );
Function Description:
If you wait until any child process ends, the PID of the child process that is currently terminated is returned, and the status of the child process exited is stored in the "_ stat_loc" variable. if error-1 is returned, the error cause is stored in errno.
The parent process that calls the wait () function. If all its child processes are still running, the parent process will be blocked and wait until any child process ends, reclaim the kernel process resources of the sub-process. if the parent process does not have any child process, an error occurs.
If the process calls wait () because it receives the sigchld signal, it is expected that wait () will return immediately. However, if wait () is called at any time, the process may be blocked.
Parameter status:
The status parameter is an integer pointer. if the status is not a null pointer, the termination state of the terminated process is placed in the memory unit to which it points. if you do not care about the Process Termination status, you can specify the parameter as a null pointer.

2. differences between wait () and waitid () functions (1) Before a sub-process is terminated, wait () blocks its callers, while waitpid () has an option, the caller is not blocked.
(2) waitpid () does not wait for the first end-to-end sub-process after it is called. It has several options to control the process it is waiting for (which will be detailed below ).
Example 1: demonstrate the basic usage of the wait () function
#include <sys/types.h>#include <sys/wait.h>#include <unistd.h>#include <stdio.h>#include <stdlib.h>#include <sys/errno.h>int main(){        pid_t pid,wait_pid;        int status;        pid = fork();    //调用fork函数        if(pid==-1)        {                printf("fork errno:%m\n");        }        if(pid==0)        {                printf("my pid is :%d\n",getpid());                sleep(5);                exit(EXIT_SUCCESS);   //正常退出        }        else        {                wait_pid = wait(&status);   //等待子进程结束                if(WIFEXITED(status))       //调用WIFEXITED宏                {                        printf("wait on pid:%d,normal exit ,return value is:%4x\n",wait_pid,WEXITSTATUS(status));                }                else if(WIFSIGNALED(status))                {                        printf("wait on pid:%d,recive signal,return value is:%4x\n",wait_pid,WIFSIGNALED(status));                }        }        return 0;}

The program Exits normally. The output is as follows:

: My PID is: 2573
: Wait on PID: 2573, normal exit, return value is: 0

If a signal is sent to the sub-process after the program runs, the output is:
: My PID is: 2573
: Wait on PID: 2573, normal exit, return value is: 1

The wifexited and wifsignaled macros are also used in the program. The macro wifexited is used to determine whether the process Exits normally. If yes, the macro value is 1. in this case, you can execute wexitstatus (Status) and send the sub-process to the Lower 8 bits of the parameter exit, _ exit or _ exit.
The macro wifsignaled is used to determine whether the process exits after receiving the signal. If yes, the macro value is 1. in this case, run wtermsig (Status) to obtain the signal number that causes the sub-process to terminate.
There are also two macros related to the termination status returned by wait and waitpid. wifstopped and wifcontinued.

3. the waitpid () function waits for the specified sub-process. If a process has several sub-processes, the wait () function returns the result as long as a sub-process ends and ends. but now we want to wait for a sub-process. We don't care about the completion of other sub-processes. What should we do? You can use the waitpid () function to wait for the specified sub-process to end.
Definition: pid_t waitpid (pid_t PID, int * status, int options );
Here, the first parameter is the process PID value, which is parsed as follows:
(1) pid =-1 wait for any sub-process to end. The waitpid () function is equivalent to the wait () function;
(2) pid> 0: Wait for the child process whose process ID is equal to the PID;
(3) pid = 0 wait for any sub-process whose group ID is equal to the call process group ID;
(4) PID <-1 waits for any sub-process whose group ID is equal to the absolute value of PID.
The second parameter is the variable address in the function that calls it. If the execution is successful, it is used to store the end state of the process.
The third parameter is the waiting option. It can be set to 0 or wnohang or wuntraced ). if options is set to wnohang and no sub-process exits at this time, 0 will be returned immediately and will not wait forever like wait. otherwise, the child process PID is returned and the status of the child process is obtained in the stat_loc parameter.
This is two constants. You can use the "|" operator to connect them. For example:
Ret = waitpid (-1, null, wnohang | wuntraced );
If you do not want to use them, you can set options to 0, for example:
Ret = waitpid (-1, null, 0 );

Waitpid Return Value

Due to the large number of waitpid function parameters, the returned values are also determined based on the parameters. A comprehensive analysis involves three situations:
(1) If the execution succeeds, the waitpid () returns the PID of the child process;
(2) If the option wnohang is set in options, and waitpid does not exit the child process during execution, 0 is returned;
(3) If an error occurs in a call,-1 is returned. errno is set to a value to indicate the error. When the specified process or process group does not exist, or if the process specified by the PID parameter is not a sub-process of the called process, an error occurs.

4. The waipid () function provides three functions that the wait () function does not have (1) waitpid can wait for a specific process, while wait returns the status of any final sub-process.
(2) waitpid provides a non-blocking version of wait. The user wants to obtain the sub-process status but does not want to block it.
(3) waitpid supports job control.
Example 2: Wait for the specified sub-process
#include <sys/types.h>#include <sys/wait.h>#include <stdio.h>#include <unistd.h>#include <stdlib.h>int main(){    pid_t chlid_pid, wait_pid;    chlid_pid=fork();    if(chlid_pid<0)          printf("Error occured on forking.\n");    else if(chlid_pid==0)    {          sleep(5);        exit(0);    }    do    {        wait_pid=waitpid(chlid_pid, NULL, WNOHANG);   //不阻塞,直接返回        if(wait_pid==0)        {               printf("No child exited\n");            sleep(1);        }    }while(wait_pid==0);            if(wait_pid==chlid_pid)        printf("successfully release child %d\n", wait_pid);    else        printf("some error occured\n");    return 0;}

Output:

: No child exited
: No child exited
: No child exited
: No child exited
: No child exited
: Successfully release child 2538.

Every second, the parent process checks whether a child process exits. in the first five seconds, because no sub-process exits, the parent process calls waitpid (chpai_pid, null, wnohang) to return directly. after the sub-process exits, it can handle the problem.

Author: my personal abilities are limited, just for reference. If the reader finds any errors in this article, please submit them.
-- Certificate ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Do not build a high station in the sand float, calm down and slowly accumulate -----------------------------------------Certificate ----------------------------------------------------------------------------------------------------------------------------------------------------------

Reclaim kernel space resources wait function waitid Function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.