| 370 | } |
| 371 | |
| 372 | static void |
| 373 | callout_cc_del(struct callout *c, struct callout_cpu *cc) |
| 374 | { |
| 375 | |
| 376 | if ((c->c_iflags & CALLOUT_LOCAL_ALLOC) == 0) |
| 377 | return; |
| 378 | c->c_func = NULL; |
| 379 | SLIST_INSERT_HEAD(&cc->cc_callfree, c, c_links.sle); |
| 380 | } |
| 381 | |
| 382 | static void |
| 383 | softclock_call_cc(struct callout *c, struct callout_cpu *cc, |
no outgoing calls
no test coverage detected