Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_kill.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}