diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-04-11 11:02:59 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-04-11 11:02:59 -0700 |
commit | 4be2b5700315a99c6828ad314ed3e45ecf1c1527 (patch) | |
tree | 080a9af09c011b0db85ea2393e29d2df5e78ad1c /bits | |
parent | 4cfd80263af2a94c6a2046ef43d2dc511bc15188 (diff) | |
download | glibc-4be2b5700315a99c6828ad314ed3e45ecf1c1527.tar glibc-4be2b5700315a99c6828ad314ed3e45ecf1c1527.tar.gz glibc-4be2b5700315a99c6828ad314ed3e45ecf1c1527.tar.bz2 glibc-4be2b5700315a99c6828ad314ed3e45ecf1c1527.zip |
Add __snseconds_t and __SNSECONDS_T_TYPE
Diffstat (limited to 'bits')
-rw-r--r-- | bits/types.h | 1 | ||||
-rw-r--r-- | bits/typesizes.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bits/types.h b/bits/types.h index a9bf0add0c..ae79a6f47a 100644 --- a/bits/types.h +++ b/bits/types.h @@ -148,6 +148,7 @@ __STD_TYPE __ID_T_TYPE __id_t; /* General type for IDs. */ __STD_TYPE __TIME_T_TYPE __time_t; /* Seconds since the Epoch. */ __STD_TYPE __USECONDS_T_TYPE __useconds_t; /* Count of microseconds. */ __STD_TYPE __SUSECONDS_T_TYPE __suseconds_t; /* Signed count of microseconds. */ +__STD_TYPE __SNSECONDS_T_TYPE __snseconds_t; /* Signed count of nanoseconds. */ __STD_TYPE __DADDR_T_TYPE __daddr_t; /* The type of a disk address. */ __STD_TYPE __SWBLK_T_TYPE __swblk_t; /* Type of a swap block maybe? */ diff --git a/bits/typesizes.h b/bits/typesizes.h index e1c5a27bb7..179fe5f562 100644 --- a/bits/typesizes.h +++ b/bits/typesizes.h @@ -57,6 +57,7 @@ #define __BLKSIZE_T_TYPE __SLONGWORD_TYPE #define __FSID_T_TYPE struct { int __val[2]; } #define __SSIZE_T_TYPE __SWORD_TYPE +#define __SNSECONDS_T_TYPE __SLONGWORD_TYPE /* Number of descriptors that can fit in an `fd_set'. */ #define __FD_SETSIZE 1024 |