Searched refs:SIGPIPE (Results 51 - 75 of 88) sorted by relevance

1234

/haiku-fatelf/src/bin/network/wget/lib/
H A Dstdio-write.c26 /* On native Windows platforms, SIGPIPE does not exist. When write() is
55 /* Try to raise signal SIGPIPE. */ \
56 raise (SIGPIPE); \
/haiku-fatelf/src/tests/system/kernel/
H A Dsigint_bug113_test.cpp19 ADD_SIGNAL(SIGPIPE),
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sigaction/
H A D28-10.c24 * -> register a signal handler for SIGPIPE with signal().
167 #define SIGNAL SIGPIPE
217 /* Install the signal handler for SIGPIPE */
/haiku-fatelf/src/tests/system/libroot/posix/
H A Dpthread_signal_test.cpp60 sigaddset(&mask, SIGPIPE);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dstrsignal.c126 #if defined (SIGPIPE)
127 ENTRY(SIGPIPE, "SIGPIPE", "Broken pipe"),
/haiku-fatelf/headers/posix/
H A Dsignal.h126 #define SIGPIPE 7 /* write to a pipe w/no readers */ macro
/haiku-fatelf/src/bin/coreutils/lib/
H A Dsig2str.c75 #ifdef SIGPIPE
/haiku-fatelf/src/bin/gdb/gdb/
H A Dser-tcp.c193 signal (SIGPIPE, SIG_IGN);
H A Dproc-events.c1484 #ifdef SIGPIPE
1485 { SIGPIPE, "SIGPIPE", "Write to pipe with no one to read it" },
/haiku-fatelf/src/bin/rcs/
H A Drcsutil.c449 # ifdef SIGPIPE
450 case SIGPIPE: sname = "Broken pipe"; break;
712 # ifdef SIGPIPE
713 SIGPIPE,
/haiku-fatelf/src/bin/diffutils/src/
H A Dsdiff.c87 SIGPIPE
231 kill (diffpid, SIGPIPE);
639 /* Block SIGINT and SIGPIPE. */
642 sigaddset (&blocked, SIGPIPE);
650 /* Alter the child's SIGINT and SIGPIPE handlers;
653 The child does not ignore SIGPIPE, even if the parent does. */
656 signal_handler (SIGPIPE, SIG_DFL);
658 /* Stop blocking SIGINT and SIGPIPE in the child. */
673 /* Restore the parent's SIGINT and SIGPIPE behavior. */
677 signal_handler (SIGPIPE, catchsi
[all...]
/haiku-fatelf/src/bin/network/ftp/
H A Dmain.c518 (void)xsignal(SIGPIPE, lostpeer);
566 (void)xsignal(SIGPIPE, lostpeer);
716 (void)xsignal(SIGPIPE, lostpeer);
H A Dprogressbar.c448 case SIGPIPE:
H A Dftp.c647 oldintp = xsignal(SIGPIPE, SIG_IGN);
720 oldintp = xsignal(SIGPIPE, SIG_IGN);
874 (void)xsignal(SIGPIPE, oldintp);
1018 oldintp = xsignal(SIGPIPE, SIG_IGN);
1244 (void)xsignal(SIGPIPE, oldintp);
H A Dfetch.c1088 oldintp = xsignal(SIGPIPE, SIG_IGN);
1269 (void)xsignal(SIGPIPE, oldintp);
1732 (void)xsignal(SIGPIPE, lostpeer);
/haiku-fatelf/src/bin/gdb/gdb/gdbserver/
H A Dgdbreplay.c149 signal (SIGPIPE, SIG_IGN); /* If we don't do this, then gdbreplay simply
H A Dremote-utils.c168 signal (SIGPIPE, SIG_IGN); /* If we don't do this, then gdbserver simply
/haiku-fatelf/src/bin/patch/
H A Dutil.c666 #ifdef SIGPIPE
667 SIGPIPE,
/haiku-fatelf/src/libs/util/
H A Dpw_util.c155 (void)signal(SIGPIPE, SIG_IGN);
/haiku-fatelf/src/bin/network/netcat/
H A Dnetcat.c1365 #ifdef SIGPIPE
1366 signal (SIGPIPE, SIG_IGN); /* important! */
/haiku-fatelf/src/bin/network/wget/src/
H A Dmain.c1247 #ifdef SIGPIPE
1248 /* Writing to a closed socket normally signals SIGPIPE, and the
1249 process exits. What we want is to ignore SIGPIPE and just check
1251 signal (SIGPIPE, SIG_IGN);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/BeSure/
H A Dbesure_server.c107 signal(SIGPIPE, SIG_IGN);
215 signal(SIGPIPE, SIG_DFL);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/server-1.2.6/
H A Dbeserved_server.c222 signal(SIGPIPE, SIG_IGN);
947 signal(SIGPIPE, SIG_DFL);
/haiku-fatelf/src/add-ons/kernel/network/protocols/unix/
H A DUnixEndpoint.cpp486 // Note: Linux and Solaris also send a SIGPIPE, but according
496 // the caller with a SIGPIPE.
498 send_signal(find_thread(NULL), SIGPIPE); local
/haiku-fatelf/src/bin/bash/
H A Dnojobs.c809 (WTERMSIG (status) != SIGINT) && (WTERMSIG (status) != SIGPIPE))

Completed in 640 milliseconds

1234