blob: d44e8096b8a96bfb7ba720691bb7f15489d1de97 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/export.h>
#include <linux/sched/signal.h>
int rust_helper_signal_pending(struct task_struct *t)
{
return signal_pending(t);
}
EXPORT_SYMBOL_GPL(rust_helper_signal_pending);
|