0f020d18b1
Removed 'join_count' from pthread_internal_t and switched to using the flag PTHREAD_ATTR_FLAG_JOINED to indicate if a thread is being joined. Combined with a switch to a while loop in pthread_join, this fixes spurious wake-ups but prevents a thread from being joined multiple times. This is fine for two reasons: 1) The pthread_join specification allows for undefined behavior when multiple threads try to join a single thread. 2) There is no thread safe way to allow multiple threads to join a single thread with the pthread interface. The second thread calling pthread_join could be pre-empted until the thread is destroyed and its handle reused for a different thread. Therefore multi-join is always an error. Bug: https://code.google.com/p/android/issues/detail?id=52255 Change-Id: I8b6784d47620ffdcdbfb14524e7402e21d46c5f7 |
||
---|---|---|
.. | ||
Android.mk | ||
benchmark_main.cpp | ||
benchmark.h | ||
dirent_test.cpp | ||
dlfcn_test.cpp | ||
empty.cpp | ||
eventfd_test.cpp | ||
fenv_test.cpp | ||
fortify1_test.cpp | ||
fortify2_test.cpp | ||
getauxval_test.cpp | ||
getcwd_test.cpp | ||
libc_logging_test.cpp | ||
libgen_test.cpp | ||
malloc_test.cpp | ||
math_benchmark.cpp | ||
math_test.cpp | ||
netdb_test.cpp | ||
pthread_test.cpp | ||
regex_test.cpp | ||
signal_test.cpp | ||
stack_protector_test.cpp | ||
stdio_test.cpp | ||
stdlib_test.cpp | ||
string_benchmark.cpp | ||
string_test.cpp | ||
strings_test.cpp | ||
stubs_test.cpp | ||
time_benchmark.cpp | ||
time_test.cpp | ||
unistd_test.cpp |