diff options
Diffstat (limited to 'threadproc/unix/signals.c')
-rw-r--r-- | threadproc/unix/signals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/signals.c b/threadproc/unix/signals.c index 186353cc5..68bb18245 100644 --- a/threadproc/unix/signals.c +++ b/threadproc/unix/signals.c @@ -60,7 +60,7 @@ * arg 1) The process to terminate. * arg 2) How to kill the process. */ -ap_status_t ap_kill(struct proc_t *proc, int sig) +ap_status_t ap_kill(struct ap_proc_t *proc, int sig) { if (kill(proc->pid, sig) == -1) { return errno; |