| 82 | /* Called only when the thread-specific data is not NULL. */ |
| 83 | |
| 84 | static void str_alloc_destroy_accu(void * accu) |
| 85 | { |
| 86 | printf("Thread %lx: freeing buffer at %p\n", pthread_self(), accu); |
| 87 | free(accu); |
| 88 | } |
| 89 | |
| 90 | /* Test program */ |
| 91 |
nothing calls this directly
no test coverage detected