Symbol: SIGINT
headers/tools/cppunit/ThreadManager.h
83
kill(fID, SIGINT);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_signals.c
51
set_one_signal_handler(SIGINT, exit_handler, 0) == -1 ||
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_signals.c
69
set_one_signal_handler(SIGINT, exit_handler, 1);
src/add-ons/kernel/generic/tty/tty.cpp
814
signal = SIGINT;
src/add-ons/tracker/zipomatic/ZipperThread.cpp
392
status = send_signal(fZipProcess, SIGINT);
src/apps/debugger/Debugger.cpp
700
SignalSet(SIGINT).BlockInCurrentThread();
src/apps/debugger/user_interface/gui/utility_windows/SignalDispositionEditWindow.cpp
170
ADD_SIGNAL_MENU_ITEM(SIGINT)
src/apps/expander/ExpanderThread.cpp
314
status = send_signal(-fThreadId, SIGINT);
src/apps/poorman/libhttpd/libhttpd.c
2694
if ( kill( pid, SIGINT ) == 0 )
src/apps/terminal/Shell.cpp
453
signal(SIGINT, SIG_DFL);
src/bin/debug/profile/profile.cpp
676
|| sigaction(SIGINT, &action, NULL) < 0
src/bin/debug/scheduling_recorder/scheduling_recorder.cpp
125
|| sigaction(SIGINT, &action, NULL) < 0
src/bin/debug/strace/signals.cpp
30
ENUM_INFO_ENTRY(SIGINT),
src/bin/media_client/MediaPlay.cpp
88
signal(SIGINT, keyb_int);
src/bin/network/ftpd/ftpd.c
555
(void)sigaction(SIGINT, &sa, NULL);
src/bin/network/ftpd/popen.c
196
omask = sigblock(sigmask(SIGINT)|sigmask(SIGQUIT)|sigmask(SIGHUP));
src/bin/network/mount_nfs/mount_nfs.cpp
43
signal(SIGINT, SIG_IGN);
src/bin/network/ping/main.c
207
case SIGINT:
src/bin/network/ping/ping.c
884
if (sigaction(SIGINT, &si_sa, 0) == -1)
src/bin/network/ping/ping6.c
1161
if (sigaction(SIGINT, &si_sa, 0) == -1)
src/bin/network/ping/ping6.c
1283
sigaction(SIGINT, &si_sa, 0);
src/bin/network/telnet/commands.c
2611
(void) signal(SIGINT, SIG_DFL);
src/bin/network/telnet/sys_bsd.c
110
#ifdef SIGINT
src/bin/network/telnet/sys_bsd.c
590
#ifdef SIGINT
src/bin/network/telnet/sys_bsd.c
591
(void) signal(SIGINT, intr);
src/bin/network/telnet/sys_bsd.c
644
#ifdef SIGINT
src/bin/network/telnet/sys_bsd.c
645
(void) signal(SIGINT, SIG_DFL);
src/bin/network/telnet/sys_bsd.c
809
(void) signal(SIGINT, intr);
src/bin/network/telnetd/telnetd.c
1191
(void) ioctl(pty, TCSIG, SIGINT);
src/bin/top.cpp
389
signal(SIGINT, sigint_handler);
src/bin/unzip/unzip.c
1040
savsig->sighandler = signal(SIGINT, newhandler);
src/bin/unzip/unzip.c
692
#ifdef SIGINT
src/bin/unzip/unzip.c
693
SET_SIGHANDLER(SIGINT, handler);
src/bin/watch.c
173
signal(SIGINT, die);
src/kits/debugger/user_interface/util/UiUtils.cpp
596
DEFINE_SIGNAL_STRING(SIGINT)
src/libs/bsd/readpassphrase.c
144
(void)sigaction(SIGINT, &saveint, NULL);
src/libs/bsd/readpassphrase.c
86
(void)sigaction(SIGINT, &sa, &saveint);
src/libs/glut/glutInit.cpp
233
signal(SIGINT, sigHandler);
src/system/libroot/posix/unistd/system.cpp
43
sigaction(SIGINT, &sa, &intSave);
src/system/libroot/posix/unistd/system.cpp
57
sigaction(SIGINT, &intSave, NULL);
src/tests/apps/miniterminal/MiniView.cpp
135
signal(SIGINT, SIG_DFL);
src/tests/kits/app/bapplication/testapps/BApplicationTestAppQuitWhenStartedFromAnotherThread.cpp
31
signal(SIGINT, sighandler); /* on ^C exit the bapp_thread too */
src/tests/kits/media/playsound/playfile.cpp
93
signal(SIGINT, keyb_int);
src/tests/kits/media/playsound/playsound.cpp
106
signal(SIGINT, keyb_int);
src/tests/kits/media/playsound/playwav.cpp
89
signal(SIGINT, keyb_int);
src/tests/system/kernel/sigint_bug113_test.cpp
14
ADD_SIGNAL(SIGINT),
src/tests/system/kernel/syscall_restart_test.cpp
187
sigaction(SIGINT, &action, NULL);
src/tests/system/kernel/syscall_restart_test.cpp
52
kill(thread, SIGINT);
src/tests/system/libroot/posix/pthread_signal_test.cpp
59
sigaddset(&mask, SIGINT);