| 101 | } |
| 102 | |
| 103 | static int |
| 104 | vm86_fubyte(volatile const void *base) |
| 105 | { |
| 106 | |
| 107 | if (curthread->td_critnest != 0) |
| 108 | return (*(volatile const u_char *)base); |
| 109 | return (fubyte(base)); |
| 110 | } |
| 111 | |
| 112 | static int |
| 113 | vm86_fuword16(volatile const void *base) |
no test coverage detected