| 833 | } |
| 834 | |
| 835 | static __inline register_t |
| 836 | intr_disable(void) |
| 837 | { |
| 838 | register_t rflags; |
| 839 | |
| 840 | rflags = read_rflags(); |
| 841 | disable_intr(); |
| 842 | return (rflags); |
| 843 | } |
| 844 | |
| 845 | static __inline void |
| 846 | intr_restore(register_t rflags) |
no test coverage detected