Sign in
android
/
platform
/
external
/
strace
/
refs/heads/android15-tests-dev
/
.
/
tests-mx32
/
gettid.c
blob: 9b13eb880a35d0b01f7ec62fd78cb5de0e3bc10c [
file
] [
log
] [
blame
] [
edit
]
#include
"tests.h"
#include
<stdio.h>
#include
<unistd.h>
#include
<asm/unistd.h>
int
main
(
void
)
{
printf
(
"gettid() = %ld\n"
,
syscall
(
__NR_gettid
));
puts
(
"+++ exited with 0 +++"
);
return
0
;
}