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