aboutsummaryrefslogtreecommitdiff
path: root/libgloss/riscv/sys_kill.c
blob: cf7f224ef32db08eac6d21c51187fb2b18139560 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <machine/syscall.h>
#include "internal_syscall.h"

/* Send a signal. Minimal implementation for a system without processes
   just causes an error.  */
int
_kill(int pid, int sig)
{
  errno = EINVAL;
  return -1;
}