1 /* 2 * Copyright 2012, Alex Smith, alex@alex-smith.me.uk. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H 6 #define _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H 7 8 #ifndef _SYSTEM_COMMPAGE_DEFS_H 9 # error Must not be included directly. Include <commpage_defs.h> instead! 10 #endif 11 12 #define COMMPAGE_ENTRY_X86_SIGNAL_HANDLER \ 13 (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0) 14 #define COMMPAGE_ENTRY_X86_THREAD_EXIT \ 15 (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 1) 16 17 #endif /* _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H */ 18