Linux-6.18.2/rust/helpers/signal.c

9 lines
155 B
C
Raw Normal View History

2025-12-23 20:05:50 +08:00
// SPDX-License-Identifier: GPL-2.0
#include <linux/sched/signal.h>
int rust_helper_signal_pending(struct task_struct *t)
{
return signal_pending(t);
}