xref: /linux/rust/helpers/signal.c (revision 420fb223fe6049f5eecac0d28136df5bc5699ea2)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/export.h>
4 #include <linux/sched/signal.h>
5 
6 int rust_helper_signal_pending(struct task_struct *t)
7 {
8 	return signal_pending(t);
9 }
10