You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid using __cxa_thread_atexit for pthread_cleanup_push. (#15210)
These is no need to use `__cxa_thread_atexit` here, we can just call
these functions during thread exit (which is what musl does).
This also avoids references `__cxa_thread_atexit` which is normally a
libc++abi symbol from C programs.
Needed by (split out from) #14489.
0 commit comments