You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check the pending signals for a process in a signal handler via sigpending
Show the coalescence of pending signals of the same type (this can be done by letting signals accumulate either in a slow handler (that lets the sigs accumulate) or by explicitly blocking signals of a certain type (letting sigs accumulate), and then unblocking the signals and showing how many times the handler is run (prob 1).
sigprocmask vs pthread_sigmask
Demonstrate how setting a thread's signal mask doesn't change the containing process's signal mask, thus allowing threads to selectively choose which signals they can and cannot handle.
The text was updated successfully, but these errors were encountered:
We want examples demonstrating/do the following:
sigpending
sigprocmask
vspthread_sigmask
The text was updated successfully, but these errors were encountered: