| 56 | }; |
| 57 | |
| 58 | static void |
| 59 | futex_xchgl_slow0(vm_offset_t kva, void *arg) |
| 60 | { |
| 61 | struct futex_st0 *st; |
| 62 | |
| 63 | st = arg; |
| 64 | *st->oldval = atomic_swap_int((int *)kva, st->oparg); |
| 65 | } |
| 66 | |
| 67 | int |
| 68 | futex_xchgl(int oparg, uint32_t *uaddr, int *oldval) |
nothing calls this directly
no test coverage detected