Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions sapi/fpm/fpm/fpm_trace_mach.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ int fpm_trace_signal(pid_t pid) /* {{{ */
}
/* }}} */

int fpm_trace_continue(pid_t pid) /* {{{ */

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You do not call this from anywhere?

{
if (0 > fpm_pctl_kill(pid, FPM_PCTL_CONT)) {
zlog(ZLOG_SYSERROR, "failed to send SIGCONT to %d", pid);
return -1;
}
return 0;
}

int fpm_trace_ready(pid_t pid) /* {{{ */
{
kern_return_t kr;
Expand Down
Loading