* Function that uses rdtsc to measure timing for ring enqueue. Needs pair * thread running dequeue_bulk function */
| 239 | * thread running dequeue_bulk function |
| 240 | */ |
| 241 | static int |
| 242 | enqueue_bulk(void *p) |
| 243 | { |
| 244 | struct thread_params *params = p; |
| 245 | |
| 246 | return enqueue_dequeue_bulk_helper(0, -1, params); |
| 247 | } |
| 248 | |
| 249 | static int |
| 250 | enqueue_bulk_16B(void *p) |
nothing calls this directly
no test coverage detected