Lines Matching defs:signal
178 void NativeProcessFreeBSD::MonitorCallback(lldb::pid_t pid, int signal) {
179 switch (signal) {
185 return MonitorSignal(pid, signal);
192 LLDB_LOG(log, "got exit signal({0}) , pid = {1}", status, pid);
375 void NativeProcessFreeBSD::MonitorSignal(lldb::pid_t pid, int signal) {
387 assert(info.pl_siginfo.si_signo == signal);
457 int signal = 0;
478 "processing resume action state {0} signal {1} for pid {2} tid {3}",
479 action->state, action->signal, GetID(), thread.GetID());
490 if (action->signal != LLDB_INVALID_SIGNAL_NUMBER)
491 return Status("Passing signal to suspended thread unsupported");
505 if (action->signal != LLDB_INVALID_SIGNAL_NUMBER)
506 signal = action->signal;
510 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), signal);