Sign in
apache
/
logging-log4cxx
/
cc2c49ef3573e97fea0fc6c0ceba6c44f270ff87
/
.
/
src
/
cmake
/
compiler-features
/
test-thread-local.cpp
blob: 9a8ba961d410981bf1a889295a171f0fec1a3c69 [
file
] [
log
] [
blame
]
#include
<string>
std
::
string
&
getCurrentThreadVar
()
{
thread_local std
::
string thread_id_string
;
return
thread_id_string
;
}
int
main
(){
getCurrentThreadVar
()
=
"name"
;
}