mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 19:05:08 +00:00
14 lines
230 B
C++
14 lines
230 B
C++
#include "unistd.h"
|
|
#include "errno.h"
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
int kill(pid_t pid, int sig)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixKill, (dword)pid, (dword)sig);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|
|
|