| 741 | } |
| 742 | |
| 743 | static __inline u_long |
| 744 | atomic_swap_long(volatile u_long *p, u_long v) |
| 745 | { |
| 746 | |
| 747 | return (atomic_swap_int((volatile u_int *)p, (u_int)v)); |
| 748 | } |
| 749 | |
| 750 | #else /* !__GNUCLIKE_ASM */ |
| 751 |
nothing calls this directly
no test coverage detected