2012-06-13 20:45:22 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H
|
|
|
|
#define _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H
|
|
|
|
|
|
|
|
#ifndef _SYSTEM_COMMPAGE_DEFS_H
|
|
|
|
# error Must not be included directly. Include <commpage_defs.h> instead!
|
|
|
|
#endif
|
|
|
|
|
2012-07-30 16:52:51 +04:00
|
|
|
#define COMMPAGE_ENTRY_X86_SIGNAL_HANDLER \
|
2014-09-06 18:41:58 +04:00
|
|
|
(COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0)
|
2013-03-06 17:51:30 +04:00
|
|
|
#define COMMPAGE_ENTRY_X86_THREAD_EXIT \
|
2014-09-06 18:41:58 +04:00
|
|
|
(COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 1)
|
2012-07-21 19:18:10 +04:00
|
|
|
|
2012-06-13 20:45:22 +04:00
|
|
|
#endif /* _SYSTEM_ARCH_x86_64_COMMPAGE_DEFS_H */
|