mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-04 04:02:26 +00:00
9 lines
155 B
C
9 lines
155 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
#include <linux/sched/signal.h>
|
||
|
|
||
|
int rust_helper_signal_pending(struct task_struct *t)
|
||
|
{
|
||
|
return signal_pending(t);
|
||
|
}
|