source:
trunk/libs/newlib/src/libgloss/riscv/sys_kill.c
@
612
Last change on this file since 612 was 444, checked in by , 6 years ago | |
---|---|
File size: 224 bytes |
Line | |
---|---|
1 | #include <machine/syscall.h> |
2 | #include "internal_syscall.h" |
3 | |
4 | /* Send a signal. Minimal implementation for a system without processes |
5 | just causes an error. */ |
6 | int |
7 | _kill(int pid, int sig) |
8 | { |
9 | errno = EINVAL; |
10 | return -1; |
11 | } |
Note: See TracBrowser
for help on using the repository browser.