| 194 | /// @param exit_reason the exit reason associated with the VMExit |
| 195 | /// |
| 196 | extern "C" void |
| 197 | vmexit_entry( |
| 198 | bsl::safe_u16::value_type const vsid, bsl::safe_u64::value_type const exit_reason) noexcept |
| 199 | { |
| 200 | bsl::discard(vsid); |
| 201 | bsl::discard(exit_reason); |
| 202 | |
| 203 | bsl::error() << "extension purposely exiting early\n"; |
| 204 | bf_control_op_exit(); |
| 205 | } |
| 206 | |
| 207 | /// <!-- description --> |
| 208 | /// @brief Implements the main entry function for this example |
nothing calls this directly
no test coverage detected