Sign in
ara-mdk
/
platform
/
ndk
/
475062536afdce382df7b9b891577740a4eb7a2d
/
.
/
tests
/
device
/
issue38121
/
jni
/
main.c
blob: 5d601c7dcbf219dc2f3c386b669c5c619a0423b0 [
file
] [
log
] [
blame
]
#include
<pthread.h>
static
int
testval
=
4
;
void
dodgy_function
(
pthread_key_t
*
key
)
{
pthread_setspecific
(*
key
,
&
testval
);
}
int
main
(
void
)
{
pthread_key_t
mykey
;
pthread_key_create
(&
mykey
,
NULL
);
dodgy_function
(&
mykey
);
return
0
;
}