un the kill -l command on your system to display all the signals that your system supports along with their numbers. What are the numbers for the following signals: SIGCHLD and SIGSEGV? When are these signals generated?
The following session shows that our Red Hat 7.0 system supports 63 signals. The numbers for SIGCHLD and SIGSEGV are 17 and 11, respectively. The SIGCHLD signal is sent to a process when any of its children processes terminates. The SIGSEGV signal is sent to a processes when it causes a segmentation fault, i.e., it tries to access an illegal memory location.
Computer Science & Information Technology
You might also like to view...
________ is the process of arranging data in a specific order based on the value in a field
A) Filtering B) Sorting C) Grouping D) Cascading
Computer Science & Information Technology
An array can store multiple values, but the values must be
A) all the same data type. B) declared at the time the array is created. C) constants. D) numeric, not characters or strings. E) none of the above.
Computer Science & Information Technology