1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00

client API: mention that SIGPIPE is sometimes blocked

ipc-unix.c does this out of convenience. Since signals are global
process state, this deserves a mention, since applications could in
theory rely on SIGPIPE being set to something else.
This commit is contained in:
wm4 2018-01-17 11:59:59 +01:00 committed by Kevin Mitchell
parent 342e36ea11
commit 4f49334318

View File

@ -136,6 +136,8 @@ extern "C" {
* - On memory exhaustion, mpv will kill the process.
* - In certain cases, mpv may start sub processes (such as with the ytdl
* wrapper script).
* - Using UNIX IPC (off by default) will override the SIGPIPE signal handler,
* and set it to SIG_IGN.
*
* Encoding of filenames
* ---------------------