From: Ulrich Drepper Date: Mon, 4 May 1998 11:38:48 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/libc-ud-980518~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15f32e7b7912df66ff5e1d337e4f621157504058;p=platform%2Fupstream%2Fglibc.git Update. 1998-05-04 Ulrich Drepper * signal/signal.h: Move definitions of struct sigstack and struct sigaltstack into separate file and include it. * sysdeps/generic/bits/sigstack.h: New file. * sysdeps/unix/sysv/linux/bits/sigstack.h: New file. * signal/Makefile (headers): Add bits/sigstack.h. 1998-05-03 Andreas Schwab * elf/rtld.c (dl_main): Fix check for number of references to interpreter object. 1998-05-03 Andreas Schwab * elf/rtld.c (dl_main): Check has_interp after executing platform specific code. 1998-05-01 Andreas Schwab * iconvdata/run-iconv-test.sh: Fix typo. 1998-05-01 Andreas Schwab * Makerules (+depfiles): Add depfiles for $(tests-static). Simplified. 1998-05-01 Andreas Schwab * manual/terminal.texi (Special Characters): Fix description of c_cc indexes. 1998-05-01 Andreas Schwab * sysdeps/unix/sysv/linux/tcsetattr.c: Use memcpy to copy the c_cc array. * sysdeps/unix/sysv/linux/tcgetattr.c: Likewise. Initialize rest of c_cc array. --- diff --git a/ChangeLog b/ChangeLog index 03b5f29..ad736ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,42 @@ +1998-05-04 Ulrich Drepper + + * signal/signal.h: Move definitions of struct sigstack and + struct sigaltstack into separate file and include it. + * sysdeps/generic/bits/sigstack.h: New file. + * sysdeps/unix/sysv/linux/bits/sigstack.h: New file. + * signal/Makefile (headers): Add bits/sigstack.h. + +1998-05-03 Andreas Schwab + + * elf/rtld.c (dl_main): Fix check for number of references to + interpreter object. + +1998-05-03 Andreas Schwab + + * elf/rtld.c (dl_main): Check has_interp after executing platform + specific code. + +1998-05-01 Andreas Schwab + + * iconvdata/run-iconv-test.sh: Fix typo. + +1998-05-01 Andreas Schwab + + * Makerules (+depfiles): Add depfiles for $(tests-static). + Simplified. + +1998-05-01 Andreas Schwab + + * manual/terminal.texi (Special Characters): Fix description of + c_cc indexes. + +1998-05-01 Andreas Schwab + + * sysdeps/unix/sysv/linux/tcsetattr.c: Use memcpy to copy the c_cc + array. + * sysdeps/unix/sysv/linux/tcgetattr.c: Likewise. Initialize rest + of c_cc array. + 1998-04-30 14:15 Zack Weinberg * sysdeps/unix/sysv/linux/netrose/rose.h: Don't include kernel headers. diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index c8e5e62..72b566b 100755 --- a/iconvdata/run-iconv-test.sh +++ b/iconvdata/run-iconv-test.sh @@ -68,7 +68,7 @@ while read from to subset targets; do failed=1; continue; } else $ICONV -f ASCII -t $to testdata/suntzus | - $ICONV -f $to -f ASCII > $temp1 || + $ICONV -f $to -t ASCII > $temp1 || { echo "*** conversion ASCII->$to->ASCII of suntzus failed"; failed=1; continue; } cmp testdata/suntzus $temp1 || diff --git a/signal/signal.h b/signal/signal.h index 5fcc418..bbca812 100644 --- a/signal/signal.h +++ b/signal/signal.h @@ -335,8 +335,8 @@ extern int sigstack __P ((__const struct sigstack *__ss, typedef struct sigaltstack { __ptr_t ss_sp; - size_t ss_size; int ss_flags; + size_t ss_size; } stack_t; extern int sigaltstack __P ((__const struct sigaltstack *__ss,