repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: pinfo: raise MAX_PID to 4194304
[newlib-cygwin.git]
/
libgloss
/
v850
/
kill.c
blob
704aa9acc5ce93212839c13b79e21d5f71fdcd98
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include
"sys/syscall.h"
5
#include <reent.h>
6
7
extern
int
errno
;
8
9
int
__trap0
(
int
function
,
int
p1
,
int
p2
,
int
p3
);
10
11
#define TRAP0(f, p1, p2, p3) __trap0(f, (int)(p1), (int)(p2), (int)(p3))
12
13
int
14
_kill
(
pid
,
sig
)
15
pid_t pid
;
16
int
sig
;
17
{
18
return
TRAP0
(
SYS_exit
,
0xdead0000
|
sig
,
0
,
0
);
19
}
20