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