mirror of
https://review.haiku-os.org/haiku
synced 2025-02-15 10:08:36 +01:00
Change-Id: Ia8e7e4626add623735fefefa1af151b7338adc35 Reviewed-on: https://review.haiku-os.org/c/haiku/+/5265 Reviewed-by: Adrien Destugues <pulkomandy@gmail.com> Reviewed-by: waddlesplash <waddlesplash@gmail.com> Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
16 lines
442 B
C
16 lines
442 B
C
/*
|
|
* Copyright 2019 Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
#ifndef _SYSTEM_ARCH_ARM64_COMMPAGE_DEFS_H
|
|
#define _SYSTEM_ARCH_ARM64_COMMPAGE_DEFS_H
|
|
|
|
#ifndef _SYSTEM_COMMPAGE_DEFS_H
|
|
# error Must not be included directly. Include <commpage_defs.h> instead!
|
|
#endif
|
|
|
|
#define COMMPAGE_ENTRY_ARM64_THREAD_EXIT (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0)
|
|
|
|
#endif /* _SYSTEM_ARCH_ARM64_COMMPAGE_DEFS_H */
|