| 138 | #include "../../kern/subr_syscall.c" |
| 139 | |
| 140 | static void |
| 141 | syscall(struct thread *td, struct trapframe *frame) |
| 142 | { |
| 143 | |
| 144 | syscallenter(td); |
| 145 | syscallret(td); |
| 146 | } |
| 147 | |
| 148 | void |
| 149 | swi_handler(struct trapframe *frame) |
no test coverage detected