1/*
2 * Copyright 2022-2023, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Copyright 2007, Travis Geiselbrecht. All rights reserved.
6 * Distributed under the terms of the MIT License.
7 */
8#ifndef _SYSTEM_ARCH_ARM_COMMPAGE_DEFS_H
9#define _SYSTEM_ARCH_ARM_COMMPAGE_DEFS_H
10
11#ifndef _SYSTEM_COMMPAGE_DEFS_H
12#	error Must not be included directly. Include <commpage_defs.h> instead!
13#endif
14
15#define COMMPAGE_ENTRY_ARM_SIGNAL_HANDLER	(COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0)
16#define COMMPAGE_ENTRY_ARM_THREAD_EXIT		(COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 1)
17
18#endif	/* _SYSTEM_ARCH_ARM_COMMPAGE_DEFS_H */
19