| 652 | static acl_pthread_key_t __errbuf_key; |
| 653 | |
| 654 | static void thread_free_buf(void *buf) |
| 655 | { |
| 656 | if ((unsigned long) acl_pthread_self() != acl_main_thread_self()) { |
| 657 | acl_myfree(buf); |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | #if !defined(HAVE_NO_ATEXIT) |
| 662 | static char *__main_buf = NULL; |
nothing calls this directly
no test coverage detected
searching dependent graphs…