Sign in
android
/
platform
/
external
/
strace
/
b65e7a8b16e6edd4c1591d9f94d36eec9cfe3ea0
/
.
/
tests
/
stack-fcall-3.c
blob: d2abe610500c17db7def49c656832e22186928b2 [
file
] [
log
] [
blame
]
#include
<signal.h>
#include
<unistd.h>
#include
"stack-fcall.h"
int
f3
(
int
i
)
{
static
int
pid
;
switch
(
i
)
{
case
1
:
return
kill
(
pid
,
SIGURG
);
default
:
return
(
pid
=
getpid
())
+
i
;
}
}