mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-30 00:07:59 +00:00
refactor(userspace/libc): replace syscall2 with call_kill in kill function
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
parent
d375acd0ec
commit
b1a107fb65
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
export int kill(pid_t pid, int sig)
|
export int kill(pid_t pid, int sig)
|
||||||
{
|
{
|
||||||
return syscall2(SYS_KILL, pid, sig);
|
return call_kill(pid, sig);
|
||||||
}
|
}
|
||||||
|
|
||||||
export int killpg(pid_t, int);
|
export int killpg(pid_t, int);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user