Sign in
linux
/
linux
/
kernel
/
git
/
gregkh
/
driver-core
/
cce5c62a75d667059cbb9c63ea009294f2de3955
/
.
/
rust
/
helpers
/
signal.c
blob: 1a6bbe9438e281cd8b61141a390cea042949e7bd [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/sched/signal.h>
int
rust_helper_signal_pending
(
struct
task_struct
*
t
)
{
return
signal_pending
(
t
);
}