| 1237 | |
| 1238 | extern void (*softdep_ast_cleanup)(struct thread *); |
| 1239 | static __inline void |
| 1240 | td_softdep_cleanup(struct thread *td) |
| 1241 | { |
| 1242 | |
| 1243 | if (td->td_su != NULL && softdep_ast_cleanup != NULL) |
| 1244 | softdep_ast_cleanup(td); |
| 1245 | } |
| 1246 | |
| 1247 | #define PROC_ID_PID 0 |
| 1248 | #define PROC_ID_GROUP 1 |
no outgoing calls
no test coverage detected