Wait has wait PID

Source: Internet
Author: User
Wait FunctionsWhen a process ends normally or abnormally, the kernel sends a message to its parent process. SichldSignal. The parent process can ignore the signal (which is the default action by the system) or provide a signal processing program called when the signal occurs. When you call a wait or waitpid process: · if all sub-processes are still running, the process is blocked. · If a child process has been terminated and is waiting for the parent process to obtain its termination status, the child process will be terminated and returned immediately. · If it does not have any sub-process, an error is returned immediately. 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. The difference between wait and waitpid is that waitpid has multiple options to control the waiting process and whether it is blocked. Posix.1 specifies the termination status to be viewed by the macros defined in <sys/Wait. H>. There are four mutex macros that can be used to obtain the cause of Process Termination. The names start with WIF. If wifexited is returned by a normal termination sub-process, it is true. If wexitstatus can be executed to obtain the low 8-bit wifsignaled In the termination status, it is true if it is returned by the abnormal termination sub-process. If wtermsig can be executed, obtain the Signal Number of the terminating process (as shown in Figure). If wifstopped is returned for the paused sub-process, it is true. You can run wstopsig, obtain the Signal Number of the paused process (as shown in Figure) wifcontinued. If the paused sub-process returns the status, it is true. It is only used for waitpid.

 

Run the following command to view the list of signals supported by Linux:

~ $ Kill-l
1) sighup 2) SIGINT 3) sigquit 4) sigill
5) sigtrap 6) SIGABRT 7) sigbus 8) sigfpe
9) sigkill 10) SIGUSR1 11) SIGSEGV 12) sigusr2
13) sigpipe 14) sigalrm 15) sigterm 17) sigchld
18) sigcont 19) sigstop 20) sigtstp 21) sigttin
22) sigttou 23) sigurg 24) sigxcpu 25) sigxfsz
26) sigvtalrm 27) sigprof 28) sigwinch 29) sigio
30) sigpwr 31) sigsys 34) sigrtmin 35) sigrtmin + 1
36) sigrtmin + 2 37) sigrtmin + 3 38) sigrtmin + 4 39) sigrtmin + 5
40) sigrtmin + 6 41) sigrtmin + 7 42) sigrtmin + 8 43) sigrtmin + 9
44) sigrtmin + 10 45) sigrtmin + 11 46) sigrtmin + 12 47) sigrtmin + 13
(48) sigrtmin + 14 49) sigrtmin + 15 50) SIGRTMAX-14 51) SIGRTMAX-13
SIGRTMAX-12 53) SIGRTMAX-11 54) SIGRTMAX-10 55) SIGRTMAX-9
(56) SIGRTMAX-8 57) SIGRTMAX-7 58) SIGRTMAX-6 59)
(60) SIGRTMAX-4 61) SIGRTMAX-3 62) SIGRTMAX-2 63)
64) sigrtmax

List, numbered 1 ~ The 31 signal is a traditional Unix-supported signal, which is an unreliable signal (non-real-time) numbered 32 ~ The 63 signal was expanded later, called a reliable signal (real-time signal ). The difference between unreliable and reliable signals is that the former does not support queuing and may cause signal loss, while the latter does not.

Below we will discuss the signal number smaller than sigrtmin.

1) sighup
This signal is sent at the end of the user terminal connection (normal or abnormal). Generally, when the control process of the terminal ends, it notifies all jobs in the same session, they are no longer associated with control terminals.

When you log on to Linux, the system assigns a session to the login user ). All programs running on this terminal, including foreground and background process groups, generally belong to this session. When you log out of Linux, processes in the frontend process group and in the background that are output to the terminal will receive a sighup signal. The default operation for this signal is to terminate the process. Therefore, the Process with terminal output in the frontend and backend will be aborted. However, this signal can be captured. For example, wget can capture the sighup signal and ignore it. In this way, even if you log out of Linux, wget can continue downloading.

In addition, this signal is used to notify the daemon that is out of the relationship with the terminal to re-read the configuration file.

2) SIGINT
The interrupt signal is sent when you type the intr character (usually Ctrl-C) to notify the foreground process group to terminate the process.

3) sigquit
Similar to SIGINT, but controlled by the quit character (usually Ctrl-\). A process generates a core file when it exits because it receives a sigquit exit. In this sense, it is similar to a program error signal.

4) sigill
The execution of invalid commands is usually caused by errors in the executable file, or the attempt to execute data segment. Stack Overflow may also generate this signal.

5) sigtrap
Generated by breakpoint commands or other trap commands. Used by debugger.

6) SIGABRT
The signal generated by calling the abort function.

7) sigbus
Invalid Address, including memory address alignment error. For example, you can access an integer with four characters in length, but its address is not a multiple of 4. It differs from SIGSEGV in that the latter is triggered by illegal access to valid storage addresses (for example, access does not belong to your own bucket or read-only bucket ).

8) sigfpe
When a fatal arithmetic operation error occurs, it includes not only floating point operation errors, but also overflow and Division 0 and other arithmetic errors.

9) sigkill
It is used to immediately end the running of the program. This signal cannot be blocked, processed, or ignored. If the Administrator finds that a process cannot be terminated, he can try to send this signal.

10) SIGUSR1
Reserved for users

11) SIGSEGV
Try to access the memory not allocated to you, or try to write data to the memory address that has no write permission.

12) sigusr2
Reserved for users

13) sigpipe
Pipe rupture. This signal is usually generated during inter-process communication. For example, for two processes that use FIFO (pipeline) Communication, the read pipeline is written to the pipeline if it is not opened or unexpectedly terminated, and the write process receives the sigpipe signal. In addition, when writing a socket to two processes that communicate with a socket, the read process is terminated.

14) sigalrm
The scheduled clock signal is used to calculate the actual time or clock time. The alarm function uses this signal.

15) sigterm
The program terminate signal. Unlike sigkill, the signal can be blocked and processed. It is usually used to require the program to exit normally. The shell command kill generates this signal by default. If the process cannot be terminated, we will try sigkill.

17) sigchld
When the child process ends, the parent process receives this signal.

If the parent process does not process this signal and does not wait for the child process (wait), although the child process terminates, it still occupies a table item in the kernel table, at this time, sub-processes are called Zombie processes. In this situation, we should avoid (parent process, ignore sigchild signal, capture it, or wait, its derived child process, or the parent process is terminated first, at this time, the termination of the sub-process is automatically taken over by the INIT process ).

18) sigcont
Let a stopped process continue execution. this signal cannot be blocked. A handler can be used to allow a program to complete a specific job when it changes from the stopped state to the continue execution. for example, re-display the prompt

19) sigstop
Stop (stopped) process execution. Note the difference between it and terminate and interrupt: the process has not ended, but is paused. This signal cannot be blocked, processed, or ignored.

20) sigtstp
The process is stopped, but the signal can be processed and ignored. This signal is sent when you type the susp character (usually Ctrl-Z ).

21) sigttin
When a background job reads data from a user terminal, all processes in the job receive the sigttin signal.

22) sigttou
Similar to sigttin, but received when writing terminal (or modifying terminal mode.

23) sigurg
It is generated when "urgent" data or out-of-band data reaches the socket.

24) sigxcpu
The CPU time limit is exceeded. This limit can be read/changed by getrlimit/setrlimit.

25) sigxfsz
When a process attempts to expand a file so that it exceeds the file size resource limit.

26) sigvtalrm
The virtual clock signal is similar to sigalrm, but the CPU time occupied by the process is calculated.

27) sigprof
Similar to sigalrm/sigvtalrm, but includes the CPU time used by the process and the time when the system calls it.

28) sigwinch
Window size changed.

29) sigio
The file descriptor is ready for input/output operations.

30) sigpwr
Power failure

31) sigsys
Invalid system call.

Among the Signals listed above, signals that cannot be captured, blocked, or ignored by the program are: sigkill, sigstop
Signals that cannot be restored to the default action include: sigill and sigtrap.
By default, the signals that cause process abortion include: SIGABRT, sigbus, sigfpe, sigill, sigiot, sigquit, SIGSEGV, sigtrap, sigxcpu, sigxfsz
By default, the process exits with the following signals: sigalrm, sighup, SIGINT, sigkill, sigpipe, sigpoll, sigprof, sigsys, sigterm, SIGUSR1, sigusr2, and sigvtalrm.
By default, the signal that causes the process to stop is: sigstop, sigtstp, sigttin, sigttou
Signals ignored by default include sigchld, sigpwr, sigurg, and sigwinch.

In addition, sigio exits in svr4 and is ignored in 4.3bsd; sigcont continues when the process is suspended; otherwise, it is ignored and cannot be blocked.

Wait has wait PID

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.