| 252 | } |
| 253 | |
| 254 | static void thread_buf_init(void) |
| 255 | { |
| 256 | if (pthread_key_create(&__errbuf_key, thread_free_buf) != 0) { |
| 257 | abort(); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | static pthread_once_t once_control = PTHREAD_ONCE_INIT; |
| 262 |
nothing calls this directly
no test coverage detected
searching dependent graphs…