Home
last modified time | relevance | path

Searched refs:thread_globals (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxxabi/test/
H A Dtest_exception_storage.pass.cpp42 size_t thread_globals [ NUMTHREADS ] = { 0 }; variable
50 std::__libcpp_thread_create ( threads + i, thread_code, (void *) (thread_globals + i)); in main()
56 if ( 0 == thread_globals [ i ] ) { in main()
62 std::sort ( thread_globals, thread_globals + NUMTHREADS ); in main()
64 if ( thread_globals [ i - 1 ] == thread_globals [ i ] ) { in main()
71 size_t thread_globals; in main()
72 thread_code(&thread_globals); in main()
74 return (thread_globals == 0) ? 1 : 0; in main()