mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 12:03:41 +01:00
(ABI_MARKER_OLD_LINUX_SIGTRAMP): Rename from ABI_MARKER_LINUX_SIGTRAMP.
(ABI_MARKER_OLD_LINUX_INTERRUPT): Rename from ABI_MARKER_LINUX_INTERRUPT. (ABI_MARKER_LINUX_SIGTRAMP): Define with Linux ABI value (3). (ABI_MARKER_LINUX_INTERRUPT): Ditto. (Logical change 1.91)
This commit is contained in:
parent
3f25a5de60
commit
c7db73d180
1 changed files with 5 additions and 4 deletions
|
@ -101,11 +101,12 @@ struct unw_addr_space
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Note: The ABI numbers in the ABI-markers (.unwabi directive) are
|
/* Note: The ABI numbers in the ABI-markers (.unwabi directive) are
|
||||||
not the same as the above ABI numbers (which are more
|
not the same as the above ABI numbers. */
|
||||||
fine-grained). */
|
#define ABI_MARKER_OLD_LINUX_SIGTRAMP ((0 << 8) | 's')
|
||||||
#define ABI_MARKER_LINUX_SIGTRAMP ((0 << 8) | 's')
|
#define ABI_MARKER_OLD_LINUX_INTERRUPT ((0 << 8) | 'i')
|
||||||
#define ABI_MARKER_LINUX_INTERRUPT ((0 << 8) | 'i')
|
|
||||||
#define ABI_MARKER_HP_UX_SIGTRAMP ((1 << 8) | 1)
|
#define ABI_MARKER_HP_UX_SIGTRAMP ((1 << 8) | 1)
|
||||||
|
#define ABI_MARKER_LINUX_SIGTRAMP ((3 << 8) | 's')
|
||||||
|
#define ABI_MARKER_LINUX_INTERRUPT ((3 << 8) | 'i')
|
||||||
|
|
||||||
struct cursor
|
struct cursor
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue