Searched refs:SIGSTOP (Results 1 - 25 of 34) sorted by relevance

12

/external/lldb/tools/debugserver/source/
H A DSysSignal.cpp43 case SIGSTOP: return "SIGSTOP"; // 17 sendable stop signal not from tty
/external/bison/lib/
H A Dsigaction.c63 #ifndef SIGSTOP
64 # define SIGSTOP (-1) macro
138 if (sig < 0 || NSIG <= sig || sig == SIGKILL || sig == SIGSTOP
H A Dsigprocmask.c46 #ifndef SIGSTOP
47 # define SIGSTOP (-1) macro
299 if (sig >= 0 && sig < NSIG && sig != SIGKILL && sig != SIGSTOP
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
H A Dsignal.h222 #define SIGSTOP 16 macro
247 #define SIGSTOP 17 /* sendable stop signal not from tty */ macro
279 #define SIGSTOP 23 /* sendable stop signal not from tty */ macro
287 #define SIGSTOP 17 /* sendable stop signal not from tty */ macro
/external/ltrace/
H A Dlibltrace.c65 debug(2, "Sending SIGSTOP to process %u", proc->pid);
66 kill(proc->pid, SIGSTOP);
160 exiting && ev->e_un.signum == SIGSTOP) {
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dsignal.h36 #define SIGSTOP 19 macro
/external/kernel-headers/original/uapi/asm-generic/
H A Dsignal.h29 #define SIGSTOP 19 macro
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dsignal.h49 #define SIGSTOP 23 /* Stop, unblockable (POSIX). */ macro
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dsignal.h41 #define SIGSTOP 19 macro
/external/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.cpp126 SetStopInfo(StopInfo::CreateStopReasonWithSignal (*this, SIGSTOP));
/external/valgrind/main/none/tests/
H A Dexec-sigmask.c69 if (i == SIGKILL || i == SIGSTOP)
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DThreadKDP.cpp163 SetStopInfo(StopInfo::CreateStopReasonWithSignal (*this, SIGSTOP));
/external/e2fsprogs/e2fsck/
H A Dsigcatcher.c88 #ifdef SIGSTOP
89 DEFINE_ENTRY(SIGSTOP)
/external/strace/
H A Dstrace.c760 * would SIGSTOP it and wait for its SIGSTOP notification forever.
784 /* We attached but possibly didn't see the expected SIGSTOP.
813 * In this state sending it another SIGSTOP does nothing.
824 error = my_tkill(tcp->pid, SIGSTOP);
828 perror_msg("detach: tkill(%u,SIGSTOP)", tcp->pid);
836 * 2. We sent SIGSTOP (!use_seize)
837 * 3. Attach SIGSTOP was already pending (TCB_IGNORE_ONE_SIGSTOP set)
900 /* (else, in use_seize case SIGSTOP will be mistreated) */
901 if (sig == SIGSTOP) {
1145 kill(getpid(), SIGSTOP); local
[all...]
/external/valgrind/main/memcheck/tests/
H A Dsigkill.stderr.exp58 setting signal 19: Warning: ignored attempt to set SIGSTOP handler in sigaction();
59 the SIGSTOP signal is uncatchable
/external/lldb/examples/python/
H A Dtypes.py233 os.kill(os.getpid(), signal.SIGSTOP)
/external/valgrind/main/coregrind/
H A Dvgdb-invoker-ptrace.c342 DEBUG(1, "%s SIGSTOP pid %d\n", msg, pid);
343 res = kill (pid, SIGSTOP);
345 ERROR(errno, "%s SIGSTOP pid %d %ld\n", msg, pid, res);
349 return waitstopped (pid, SIGSTOP, msg);
380 return waitstopped(pid, SIGSTOP, msg);
1071 /* Wait for SIGSTOP generated by m_gdbserver.c give_control_back_to_vgdb */
1072 stopped = waitstopped (pid, SIGSTOP,
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp309 else if (kill(GetID(), SIGSTOP))
443 if (message.GetSignal() == SIGSTOP &&
/external/chromium_org/base/process/
H A Dlaunch_posix.cc168 // The kernel won't allow to re-set SIGKILL or SIGSTOP.
169 if (signum != SIGSTOP && signum != SIGKILL) {
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp1317 // An attach will cause the thread to stop with a SIGSTOP.
1438 // inferior process is in 'group-stop', so deliver SIGSTOP signal
1439 if (!monitor->Resume(pid, SIGSTOP)) {
1440 assert(0 && "SIGSTOP delivery failed while in 'group-stop' state");
1626 int ret = tgkill(m_pid, tid, SIGSTOP);
1691 // When a new thread is created, we may get a SIGSTOP for the new thread
1708 // resume even if we already sent a SIGSTOP to this thread. In
1728 if (WSTOPSIG(status) == SIGSTOP)
1748 if (wait_pid == tid && WIFSTOPPED(status) && WSTOPSIG(status) == SIGSTOP && info.si_code == SI_TKILL)
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp472 // If we already have a thread stopped due to a SIGSTOP, we don't have
474 uint32_t thread_idx = m_thread_list.GetThreadIndexForThreadStoppedWithSignal (SIGSTOP);
480 // No threads were stopped with a SIGSTOP, we need to run and halt the
496 // to send ourselves a SIGSTOP
498 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::DoSIGSTOP() state = %s -- sending SIGSTOP", DNBStateAsString (state));
501 Signal (SIGSTOP, &sigstop_timeout);
508 uint32_t thread_idx = m_thread_list.GetThreadIndexForThreadStoppedWithSignal (SIGSTOP);
/external/chromium_org/tools/android/memdump/
H A Dmemdump.cc515 KillAll(pids, SIGSTOP);
/external/ltrace/sysdeps/linux-gnu/
H A Dtrace.c96 in pid. The child is sent a SIGSTOP, but will not
292 /* Don't bother sending SIGSTOP if we are already stopped, or
293 * if we sent the SIGSTOP already, which happens when we are
315 if (task_kill(task->pid, SIGSTOP) >= 0) {
316 debug(DEBUG_PROCESS, "send SIGSTOP to %d", task->pid);
320 "Warning: couldn't send SIGSTOP to %d\n", task->pid);
448 /* In every state, sink SIGSTOP events for tasks that it was
452 && event->e_un.signum == SIGSTOP) {
453 debug(DEBUG_PROCESS, "SIGSTOP delivered to %d", task_info->pid);
459 fprintf(stderr, "suspicious: %d got SIGSTOP, bu
[all...]
/external/ltrace/etc/
H A Dlibc.so.conf189 typedef signum = enum(SIGHUP=1, SIGINT=2, SIGQUIT=3, SIGILL=4, SIGTRAP=5, SIGABRT=6, SIGBUS=7, SIGFPE=8, SIGKILL=9, SIGUSR1=10, SIGSEGV=11, SIGUSR2=12, SIGPIPE=13, SIGALRM=14, SIGTERM=15, SIGSTKFLT=16, SIGCHLD=17, SIGCONT=18, SIGSTOP=19, SIGTSTP=20, SIGTTIN=21, SIGTTOU=22, SIGURG=23, SIGXCPU=24, SIGXFSZ=25, SIGVTALRM=26, SIGPROF=27, SIGWINCH=28, SIGIO=29, SIGPWR=30, SIGSYS=31, SIGRTMIN_0=32, SIGRTMIN_1=33, SIGRTMIN_2=34, SIGRTMIN_3=35, SIGRTMIN_4=36, SIGRTMIN_5=37, SIGRTMIN_6=38, SIGRTMIN_7=39, SIGRTMIN_8=40, SIGRTMIN_9=41, SIGRTMIN_10=42, SIGRTMIN_11=43, SIGRTMIN_12=44, SIGRTMIN_13=45, SIGRTMIN_14=46, SIGRTMIN_15=47, SIGRTMIN_16=48, SIGRTMIN_17=49, SIGRTMIN_18=50, SIGRTMIN_19=51, SIGRTMIN_20=52, SIGRTMIN_21=53, SIGRTMIN_22=54, SIGRTMIN_23=55, SIGRTMIN_24=56, SIGRTMIN_25=57, SIGRTMIN_26=58, SIGRTMIN_27=59, SIGRTMIN_28=60, SIGRTMIN_29=61, SIGRTMIN_30=62, SIGRTMIN_31=63);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dkernel_proxy_test.cc139 ASSERT_EQ(-1, ki_sigaction(SIGSTOP, NULL, &oaction));

Completed in 859 milliseconds

12