* Function that uses rdtsc to measure timing for ring dequeue. Needs pair * thread running enqueue_bulk function */
| 259 | * thread running enqueue_bulk function |
| 260 | */ |
| 261 | static int |
| 262 | dequeue_bulk(void *p) |
| 263 | { |
| 264 | struct thread_params *params = p; |
| 265 | |
| 266 | return enqueue_dequeue_bulk_helper(1, -1, params); |
| 267 | } |
| 268 | |
| 269 | static int |
| 270 | dequeue_bulk_16B(void *p) |
nothing calls this directly
no test coverage detected