Commit 377c23c5 authored by Benjamin Berg's avatar Benjamin Berg Committed by Johannes Berg
Browse files

um: Remove unused os_stop_process

parent 47e17496
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -200,7 +200,6 @@ extern void report_enomem(void);

/* process.c */
extern void os_alarm_process(int pid);
extern void os_stop_process(int pid);
extern void os_kill_process(int pid, int reap_child);
extern void os_kill_ptraced_process(int pid, int reap_child);

+0 −5
Original line number Diff line number Diff line
@@ -23,11 +23,6 @@ void os_alarm_process(int pid)
	kill(pid, SIGALRM);
}

void os_stop_process(int pid)
{
	kill(pid, SIGSTOP);
}

void os_kill_process(int pid, int reap_child)
{
	kill(pid, SIGKILL);