Olivier Deprez | c8f6a67 | 2022-01-13 13:44:53 +0000 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2022, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef __SYNC_H__ | ||||
8 | #define __SYNC_H__ | ||||
9 | |||||
10 | typedef bool (*exception_handler_t)(void); | ||||
11 | void register_custom_sync_exception_handler(exception_handler_t handler); | ||||
12 | void unregister_custom_sync_exception_handler(void); | ||||
13 | |||||
14 | #endif /* __SYNC_H__ */ |