Lines Matching refs:WSTOPSIG
72 if (WSTOPSIG(status) == (SIGTRAP | 0x80)) { in subproc_StatusToStr()
73 snprintf(str, len, "STOPPED (linux syscall): %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
74 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
79 if (WSTOPSIG(status) == SIGTRAP && __LINUX_WPTRACEEVENT(status) != 0) { in subproc_StatusToStr()
82 snprintf(str, len, "EVENT (Linux) - fork - with signal: %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
83 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
86 snprintf(str, len, "EVENT (Linux) - vfork - with signal: %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
87 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
90 snprintf(str, len, "EVENT (Linux) - clone - with signal: %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
91 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
94 snprintf(str, len, "EVENT (Linux) - exec - with signal: %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
95 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
99 WSTOPSIG(status), strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
102 snprintf(str, len, "EVENT (Linux) - exit - with signal: %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
103 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
107 WSTOPSIG(status), strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
110 snprintf(str, len, "EVENT (Linux) - stop - with signal: %d (%s)", WSTOPSIG(status), in subproc_StatusToStr()
111 strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
115 __LINUX_WPTRACEEVENT(status), WSTOPSIG(status), strsignal(WSTOPSIG(status))); in subproc_StatusToStr()
122 str, len, "STOPPED with signal: %d (%s)", WSTOPSIG(status), strsignal(WSTOPSIG(status))); in subproc_StatusToStr()