| 105 | /// @param ppid0 the physical process to bootstrap |
| 106 | /// |
| 107 | extern "C" void |
| 108 | bootstrap_entry(bsl::safe_u16::value_type const ppid0) noexcept |
| 109 | { |
| 110 | bsl::discard(ppid0); |
| 111 | |
| 112 | // create with invalid handle |
| 113 | { |
| 114 | syscall::bf_debug_op_write_c('*'); |
| 115 | } |
| 116 | |
| 117 | bsl::debug() << "success. remaining backtrace is expected\n" << bsl::here(); |
| 118 | return bf_control_op_exit(); |
| 119 | } |
| 120 | |
| 121 | /// <!-- description --> |
| 122 | /// @brief Implements the fast fail entry function. This is registered |
nothing calls this directly
no test coverage detected