aboutsummaryrefslogtreecommitdiffstats
path: root/rust/helpers/signal.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <[email protected]>2024-09-27 18:36:52 +0000
committerArnaldo Carvalho de Melo <[email protected]>2024-09-27 18:36:52 +0000
commit52c996d3f40b40f87ef9dc80596903309682acc3 (patch)
treecccf9d5d20463b6930054e6f083f778f7ebe487a /rust/helpers/signal.c
parentperf symbol: Set binary_type of dso when loading (diff)
parentMerge tag 'mm-hotfixes-stable-2024-09-27-09-45' of git://git.kernel.org/pub/s... (diff)
downloadkernel-52c996d3f40b40f87ef9dc80596903309682acc3.tar.gz
kernel-52c996d3f40b40f87ef9dc80596903309682acc3.zip
Merge remote-tracking branch 'torvalds/master' into perf-tools
To pick up changes in other trees that may affect perf, such as libbpf and in general the header files that perf has copies of, so that we can do the sync with the kernel sources. Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'rust/helpers/signal.c')
-rw-r--r--rust/helpers/signal.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/rust/helpers/signal.c b/rust/helpers/signal.c
new file mode 100644
index 000000000000..63c407f80c26
--- /dev/null
+++ b/rust/helpers/signal.c
@@ -0,0 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
+
+#include <linux/export.h>
+#include <linux/sched/signal.h>
+
+int rust_helper_signal_pending(struct task_struct *t)
+{
+ return signal_pending(t);
+}