1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

ARC: Linux Syscall Interface

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
This commit is contained in:
Vineet Gupta
2018-10-23 14:44:30 -07:00
parent 3ab8611a22
commit add5071a5c
15 changed files with 941 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#define JMP_BUF_SIZE (32 + 1 + 64 / (8 * sizeof (unsigned long int))) * sizeof (unsigned long int)
#define SIGJMP_BUF_SIZE (32 + 1 + 64 / (8 * sizeof (unsigned long int))) * sizeof (unsigned long int)
#define JMP_BUF_ALIGN __alignof__ (unsigned long int)
#define SIGJMP_BUF_ALIGN __alignof__ (unsigned long int)
#define MASK_WAS_SAVED_OFFSET (32 * sizeof (unsigned long int))
#define SAVED_MASK_OFFSET (33 * sizeof (unsigned long int))