| 119 | } |
| 120 | |
| 121 | static long |
| 122 | vm86_fuword(volatile const void *base) |
| 123 | { |
| 124 | |
| 125 | if (curthread->td_critnest != 0) |
| 126 | return (*(volatile const long *)base); |
| 127 | return (fuword(base)); |
| 128 | } |
| 129 | |
| 130 | static __inline caddr_t |
| 131 | MAKE_ADDR(u_short sel, u_short off) |
no test coverage detected