| 280 | #define critical_exit() critical_exit_KBI() |
| 281 | #else |
| 282 | static __inline void |
| 283 | critical_enter(void) |
| 284 | { |
| 285 | #ifndef FSTACK |
| 286 | struct thread_lite *td; |
| 287 | |
| 288 | td = (struct thread_lite *)curthread; |
| 289 | td->td_critnest++; |
| 290 | atomic_interrupt_fence(); |
| 291 | #endif |
| 292 | } |
| 293 | |
| 294 | static __inline void |
| 295 | critical_exit(void) |
no outgoing calls
no test coverage detected