Make bulk_free() go faster

This commit is contained in:
Justine Tunney 2024-12-23 20:14:01 -08:00
parent 624573207e
commit c8e10eef30
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
13 changed files with 54 additions and 36 deletions

View file

@ -88,7 +88,7 @@ wontreturn void pthread_exit(void *rc) {
// set state
pt->pt_flags |= PT_NOCANCEL | PT_EXITING;
pt->pt_rc = rc;
pt->pt_val = rc;
// free resources
__cxa_thread_finalize();