mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Wed Mar 20 09:42:11 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
* elf/dl-load.c (_dl_map_object_from_fd): Always set L->l_type; if not lt_executable, then lt_library. * elf/rtld.c (dl_main): Don't set NEW->l_type after _dl_map_object. Wed Mar 20 00:08:23 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/syscalls.list: Remove gtty and stty. Tue Mar 19 16:31:06 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/termbits.h (CRTSCTS, CBAUDEX, VEOL, VEOL2, VMIN, VTIME): Corrected. (PAGEOUT, WRAP, VDSUSP): Deleted. * sysdeps/unix/readdir.c: Test [! _DIRENT_HAVE_D_RECLEN] instead of (sizeof (DP->d_name) > 1) to detect fixed-size dir entries.
This commit is contained in:
@ -84,8 +84,6 @@ struct termios
|
||||
#define FFDLY 0x00008000
|
||||
#define FF0 0
|
||||
#define FF1 0x00008000
|
||||
#define PAGEOUT 0x00010000
|
||||
#define WRAP 0x00020000
|
||||
#endif
|
||||
|
||||
/* Control modes. */
|
||||
@ -102,9 +100,9 @@ struct termios
|
||||
#define HUPCL 0x00000400 /* Hang up on last close. */
|
||||
#define CLOCAL 0x00000800 /* Ignore modem status lines. */
|
||||
#ifdef __USE_BSD
|
||||
#define CRTSCTS 0x08000000
|
||||
#define CRTSCTS 0x80000000
|
||||
#define CBAUD 0x0000000f /* Mask for speed from c_cflag. */
|
||||
#define CBAUDEX 0x00010000 /* Mask for extended speed from c_cflag. */
|
||||
#define CBAUDEX 0x00001000 /* Mask for extended speed from c_cflag. */
|
||||
#endif
|
||||
|
||||
/* Local modes. */
|
||||
@ -133,9 +131,9 @@ struct termios
|
||||
|
||||
/* Control characters. */
|
||||
#define VEOF 4 /* End-of-file character [ICANON]. */
|
||||
#define VEOL 5 /* End-of-line character [ICANON]. */
|
||||
#define VEOL 11 /* End-of-line character [ICANON]. */
|
||||
#ifdef __USE_BSD
|
||||
#define VEOL2 6 /* Second EOL character [ICANON]. */
|
||||
#define VEOL2 16 /* Second EOL character [ICANON]. */
|
||||
#define VSWTCH 7 /* ??? */
|
||||
#endif
|
||||
#define VERASE 2 /* Erase character [ICANON]. */
|
||||
@ -149,17 +147,14 @@ struct termios
|
||||
#define VINTR 0 /* Interrupt character [ISIG]. */
|
||||
#define VQUIT 1 /* Quit character [ISIG]. */
|
||||
#define VSUSP 10 /* Suspend character [ISIG]. */
|
||||
#ifdef __USE_BSD
|
||||
#define VDSUSP 11 /* Delayed suspend character [ISIG]. */
|
||||
#endif
|
||||
#define VSTART 8 /* Start (X-ON) character [IXON, IXOFF]. */
|
||||
#define VSTOP 9 /* Stop (X-OFF) character [IXON, IXOFF]. */
|
||||
#ifdef __USE_BSD
|
||||
#define VLNEXT 15 /* Literal-next character [IEXTEN]. */
|
||||
#define VDISCARD 13 /* Discard character [IEXTEN]. */
|
||||
#endif
|
||||
#define VMIN VEOF /* Minimum number of bytes read at once [!ICANON]. */
|
||||
#define VTIME VEOL /* Time-out value (tenths of a second) [!ICANON]. */
|
||||
#define VMIN 6 /* Minimum number of bytes read at once [!ICANON]. */
|
||||
#define VTIME 5 /* Time-out value (tenths of a second) [!ICANON]. */
|
||||
#define NCCS 19
|
||||
cc_t c_cc[NCCS];
|
||||
};
|
||||
|
Reference in New Issue
Block a user