* <!-- 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 */
| 578 | * @return Returns 0 on success, LOADER_FAILURE otherwise |
| 579 | */ |
| 580 | NODISCARD int64_t |
| 581 | platform_arch_init(void) NOEXCEPT |
| 582 | { |
| 583 | return LOADER_SUCCESS; |
| 584 | } |
| 585 | |
| 586 | /** |
| 587 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected