| 100 | #endif // TS_USE_HWLOC |
| 101 | |
| 102 | void * |
| 103 | test_case_1(void *d) |
| 104 | { |
| 105 | int id; |
| 106 | void *m1; |
| 107 | |
| 108 | id = (intptr_t)d; |
| 109 | |
| 110 | for (int i = 0; i < nloop; ++i) { |
| 111 | m1 = ink_freelist_new(flist); |
| 112 | |
| 113 | memset(m1, id, 64); |
| 114 | |
| 115 | ink_freelist_free(flist, m1); |
| 116 | } |
| 117 | |
| 118 | return nullptr; |
| 119 | } |
| 120 | |
| 121 | void |
| 122 | setup_test_case_1(const int64_t n) |
nothing calls this directly
no test coverage detected