|
@@ -1904,10 +1904,10 @@ static inline bool may_ptrace_stop(void)
|
|
|
* Return non-zero if there is a SIGKILL that should be waking us up.
|
|
|
* Called with the siglock held.
|
|
|
*/
|
|
|
-static int sigkill_pending(struct task_struct *tsk)
|
|
|
+static bool sigkill_pending(struct task_struct *tsk)
|
|
|
{
|
|
|
- return sigismember(&tsk->pending.signal, SIGKILL) ||
|
|
|
- sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
|
|
|
+ return sigismember(&tsk->pending.signal, SIGKILL) ||
|
|
|
+ sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
|
|
|
}
|
|
|
|
|
|
/*
|