Sign in
ara-mdk
/
platform
/
ndk
/
b29afd2d8ad00999507fa7bd63fa65e6826da021
/
.
/
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
;
}