summaryrefslogtreecommitdiff
path: root/userland/libc/fcntl/open_process.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-12-11 18:47:33 +0100
committerAnton Kling <anton@kling.gg>2024-12-12 15:48:20 +0100
commit633feeea57c298306d8664c9c2768ab46fb7c6f4 (patch)
treed91cd1c19d3e850b978c7ada526246e3b35e6608 /userland/libc/fcntl/open_process.c
parentbc828883c51c3c0f35872019f4db632e4ce82dc5 (diff)
signal: Remove old way of sending signals and instead use procfs
Diffstat (limited to 'userland/libc/fcntl/open_process.c')
-rw-r--r--userland/libc/fcntl/open_process.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/userland/libc/fcntl/open_process.c b/userland/libc/fcntl/open_process.c
deleted file mode 100644
index 8486728..0000000
--- a/userland/libc/fcntl/open_process.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <fcntl.h>
-#include <syscall.h>
-
-int open_process(int pid) {
- RC_ERRNO(syscall(SYS_OPEN_PROCESS, pid, 0, 0, 0, 0));
-}