| 605 | uint64_t alloc_unr64(struct unrhdr64 *); |
| 606 | #else |
| 607 | static __inline uint64_t |
| 608 | alloc_unr64(struct unrhdr64 *unr64) |
| 609 | { |
| 610 | |
| 611 | return (atomic_fetchadd_64(&unr64->counter, 1)); |
| 612 | } |
| 613 | #endif |
| 614 | |
| 615 | void intr_prof_stack_use(struct thread *td, struct trapframe *frame); |
nothing calls this directly
no test coverage detected