diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-05-15 17:41:38 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-05-15 17:41:38 -0700 |
commit | de986b5636c6471580c4eb35e159512d797da112 (patch) | |
tree | a59d7b977a5ad75ee2ec94282e632e717bf22f69 /bits | |
parent | 85736dc78ba0a44d524961eef464e3690c67678a (diff) | |
download | glibc-de986b5636c6471580c4eb35e159512d797da112.tar glibc-de986b5636c6471580c4eb35e159512d797da112.tar.gz glibc-de986b5636c6471580c4eb35e159512d797da112.tar.bz2 glibc-de986b5636c6471580c4eb35e159512d797da112.zip |
Add __syscall_slong_t and __syscall_ulong_t
Diffstat (limited to 'bits')
-rw-r--r-- | bits/types.h | 5 | ||||
-rw-r--r-- | bits/typesizes.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/bits/types.h b/bits/types.h index ae79a6f47a..34880a926f 100644 --- a/bits/types.h +++ b/bits/types.h @@ -179,6 +179,11 @@ __STD_TYPE __FSFILCNT64_T_TYPE __fsfilcnt64_t; __STD_TYPE __SSIZE_T_TYPE __ssize_t; /* Type of a byte count, or error. */ +/* Signed long type used in system calls. */ +__STD_TYPE __SYSCALL_SLONG_TYPE __syscall_slong_t; +/* Unsigned long type used in system calls. */ +__STD_TYPE __SYSCALL_ULONG_TYPE __syscall_ulong_t; + /* These few don't really vary by system, they always correspond to one of the other defined types. */ typedef __off64_t __loff_t; /* Type of file sizes and offsets (LFS). */ diff --git a/bits/typesizes.h b/bits/typesizes.h index 179fe5f562..b0f284be28 100644 --- a/bits/typesizes.h +++ b/bits/typesizes.h @@ -58,6 +58,8 @@ #define __FSID_T_TYPE struct { int __val[2]; } #define __SSIZE_T_TYPE __SWORD_TYPE #define __SNSECONDS_T_TYPE __SLONGWORD_TYPE +#define __SYSCALL_SLONG_TYPE __SLONGWORD_TYPE +#define __SYSCALL_ULONG_TYPE __ULONGWORD_TYPE /* Number of descriptors that can fit in an `fd_set'. */ #define __FD_SETSIZE 1024 |