| 364 | void sigallowstop_impl(int prev); |
| 365 | |
| 366 | static inline int |
| 367 | sigdeferstop(int mode) |
| 368 | { |
| 369 | |
| 370 | if (__predict_false(mode == SIGDEFERSTOP_NOP)) |
| 371 | return (SIGDEFERSTOP_VAL_NCHG); |
| 372 | return (sigdeferstop_impl(mode)); |
| 373 | } |
| 374 | |
| 375 | static inline void |
| 376 | sigallowstop(int prev) |
no test coverage detected