blob: 10fa25816b4c40c403a8dd7a8c88adea7cd840c4 [file] [log] [blame]
Soby Mathewb4c6df42022-11-09 11:13:29 +00001/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4 */
5
6#ifndef EXIT_H
7#define EXIT_H
8
9#include <stdbool.h>
10
11struct rec;
12struct rmi_rec_exit;
13
14bool handle_realm_exit(struct rec *rec, struct rmi_rec_exit *rec_exit, int exception);
15
16#endif /* EXIT_H */