* <!-- description --> * @brief Initializes the archiecture. Some platforms might need per CPU * initialization logic to get the CPU set up. Most platforms ignore * calls to this function * * <!-- inputs/outputs --> * @return Returns 0 on success, LOADER_FAILURE otherwise */
| 458 | * @return Returns 0 on success, LOADER_FAILURE otherwise |
| 459 | */ |
| 460 | NODISCARD int64_t |
| 461 | platform_arch_init(void) NOEXCEPT |
| 462 | { |
| 463 | return LOADER_SUCCESS; |
| 464 | } |
| 465 | |
| 466 | /** |
| 467 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected