| 144 | } |
| 145 | |
| 146 | static asmlinkage void call_wrapper(void *unused) |
| 147 | { |
| 148 | struct thread *current = current_thread(); |
| 149 | enum cb_err error; |
| 150 | |
| 151 | error = current->entry(current->entry_arg); |
| 152 | |
| 153 | terminate_thread(current, error); |
| 154 | } |
| 155 | |
| 156 | struct block_boot_state { |
| 157 | boot_state_t state; |
nothing calls this directly
no test coverage detected