diff --git a/sapi/fpm/fpm/fpm_trace_mach.c b/sapi/fpm/fpm/fpm_trace_mach.c index 092858e287d4..464426bdadcc 100644 --- a/sapi/fpm/fpm/fpm_trace_mach.c +++ b/sapi/fpm/fpm/fpm_trace_mach.c @@ -51,6 +51,15 @@ int fpm_trace_signal(pid_t pid) /* {{{ */ } /* }}} */ +int fpm_trace_continue(pid_t pid) /* {{{ */ +{ + 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;