signaaliputket
Signaaliputket, or signal pipes, are a mechanism in Unix-like operating systems for inter-process communication (IPC). They allow a parent process to send data to a child process, or vice versa, in a unidirectional flow. A signal pipe is essentially a file that can be read from and written to. When data is written to the pipe, it is buffered by the operating system until a process reads it.
The primary use of signal pipes is for managing the lifecycle of child processes. For example, a
Signal pipes are created using the pipe() system call, which returns two file descriptors: one for reading