Signals in Linux
Signals are software interrupts that are delivered to a process by the kernel. A signal is a notification about an event that has occurred.
0 Comments
October 3, 2018
Signals are software interrupts that are delivered to a process by the kernel. A signal is a notification about an event that has occurred.
POSIX threads, or pthreads, provide multiple flows of execution within a process. pthreads synchronization is explained with example program.
Semaphores provide a mechanism for synchronizing processes and threads. The basics of semaphores are explained with examples.