Lines Matching defs:signal
179 void NativeProcessFreeBSD::MonitorCallback(lldb::pid_t pid, int signal) {
180 switch (signal) {
186 return MonitorSignal(pid, signal);
193 LLDB_LOG(log, "got exit signal({0}) , pid = {1}", status, pid);
379 void NativeProcessFreeBSD::MonitorSignal(lldb::pid_t pid, int signal) {
391 assert(info.pl_siginfo.si_signo == signal);
461 int signal = 0;
482 "processing resume action state {0} signal {1} for pid {2} tid {3}",
483 action->state, action->signal, GetID(), thread.GetID());
494 if (action->signal != LLDB_INVALID_SIGNAL_NUMBER)
496 "Passing signal to suspended thread unsupported");
510 if (action->signal != LLDB_INVALID_SIGNAL_NUMBER)
511 signal = action->signal;
515 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), signal);