| 66 | } |
| 67 | |
| 68 | int |
| 69 | main(int /* argc ATS_UNUSED */, char * /*argv ATS_UNUSED */[]) |
| 70 | { |
| 71 | int i; |
| 72 | |
| 73 | flist = ink_freelist_create("woof", 64, 256, 8); |
| 74 | |
| 75 | for (i = 0; i < NTHREADS; i++) { |
| 76 | fprintf(stderr, "Create thread %d\n", i); |
| 77 | ink_thread_create(nullptr, test, (void *)(static_cast<intptr_t>(i)), 0, 0, nullptr); |
| 78 | } |
| 79 | |
| 80 | test((void *)NTHREADS); |
| 81 | |
| 82 | return 0; |
| 83 | } |
nothing calls this directly
no test coverage detected