xref: /linux/rust/helpers/signal.c (revision 870b7fdc660b38c4e1bd8bf48e62aa352ddf8f42)
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