mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
689849878d
* time/time.h (struct timespec): Use __time_t for tv_sec element. * sysdeps/generic/inttypes.h: Define __wchar_t. Use it instead of wchar_t for function declarations and defintions. * misc/sys/select.h: Define __need_time_t before including <time.h>. Define suseconds_t if it hasn't happened yet. * iconv/gconv.h: Define __need_wchar_t before including <stddef.h>. * conform/data/sys/uio.h-data: Allow UIO_MAXIOV to be defined. * sysdeps/generic/stdint.h: Don't get definition of wchar_t from <stddef.h>. * conform/data/stddef.h-data: Remove wint_t.
34 lines
780 B
Plaintext
34 lines
780 B
Plaintext
#if !defined ISO && !defined POSIX
|
|
type time_t
|
|
type suseconds_t
|
|
|
|
type {struct timeval}
|
|
element {struct timeval} time_t tv_sec
|
|
element {struct timeval} suseconds_t tv_usec
|
|
|
|
type sigset_t
|
|
|
|
type {struct timespec}
|
|
element {struct timespec} time_t tv_sec
|
|
element {struct timespec} long tv_nsec
|
|
|
|
type fd_set
|
|
element fd_set long fds_bits []
|
|
|
|
function-macro void FD_CLR (int, fd_set*)
|
|
function-macro int FD_ISSET (int, fd_set*)
|
|
function-macro void FD_SET (int, fd_set*)
|
|
function-macro void FD_ZERO (fd_set*)
|
|
|
|
macro FD_SETSIZE
|
|
|
|
#ifdef XOPEN2K
|
|
function int pselect (int, fd_set*, fd_set*, fd_set*, const struct timespec*, const sigset_t*)
|
|
#endif
|
|
function int select (int, fd_set*, fd_set*, fd_set*, struct timeval*)
|
|
|
|
allow-header signal.h
|
|
allow-header sys/time.h
|
|
allow-header time.h
|
|
#endif
|