| 176 | } |
| 177 | |
| 178 | static void |
| 179 | ktrace_exit(struct thread *td) |
| 180 | { |
| 181 | |
| 182 | KASSERT(td->td_pflags & TDP_INKTRACE, ("ktrace_exit: flag not set")); |
| 183 | td->td_pflags &= ~TDP_INKTRACE; |
| 184 | } |
| 185 | |
| 186 | static void |
| 187 | ktrace_assert(struct thread *td) |
no outgoing calls
no test coverage detected