drtm_remediation.h 360 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2022 Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. #ifndef DRTM_REMEDIATION_H
  8. #define DRTM_REMEDIATION_H
  9. uint64_t drtm_set_error(uint64_t x1, void *ctx);
  10. uint64_t drtm_get_error(void *ctx);
  11. void drtm_enter_remediation(uint64_t error_code, const char *error_str);
  12. #endif /* DRTM_REMEDIATION_H */