1999-11-29  Thorsten Kukuk  <kukuk@suse.de>

	* sysdeps/unix/sysv/linux/sparc/bits/signum.h: Add define for
	SIGCLD als SIGCHLD.

1999-11-29  Andreas Jaeger  <aj@suse.de>

	* manual/time.texi (Basic CPU Time): Better describe wrap around.
	Patch by Andries Brouwer <Andries.Brouwer@cwi.nl>.

1999-11-29  Ulrich Drepper  <drepper@cygnus.com>

	* iconvdata/gconv-modules: Fix typos in LATIN8/L8 aliases.
	Patch by Bruno Haible <haible@ilog.fr>.

1999-11-29  Thorsten Kukuk  <kukuk@suse.de>

	* sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Remove K&R compatibility.
This commit is contained in:
Ulrich Drepper 1999-11-29 19:17:27 +00:00
parent ef8ff6efde
commit f347c3dbc2
4 changed files with 24 additions and 4 deletions

View File

@ -1,3 +1,22 @@
1999-11-29 Thorsten Kukuk <kukuk@suse.de>
* sysdeps/unix/sysv/linux/sparc/bits/signum.h: Add define for
SIGCLD als SIGCHLD.
1999-11-29 Andreas Jaeger <aj@suse.de>
* manual/time.texi (Basic CPU Time): Better describe wrap around.
Patch by Andries Brouwer <Andries.Brouwer@cwi.nl>.
1999-11-29 Ulrich Drepper <drepper@cygnus.com>
* iconvdata/gconv-modules: Fix typos in LATIN8/L8 aliases.
Patch by Bruno Haible <haible@ilog.fr>.
1999-11-29 Thorsten Kukuk <kukuk@suse.de>
* sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Remove K&R compatibility.
1999-11-29 Andreas Schwab <schwab@suse.de> 1999-11-29 Andreas Schwab <schwab@suse.de>
* sysdeps/m68k/bits/byteswap.h (__bswap_32): Rename local variable * sysdeps/m68k/bits/byteswap.h (__bswap_32): Rename local variable

View File

@ -345,8 +345,8 @@ module ISO-8859-13// INTERNAL ISO8859-13 1
module INTERNAL ISO-8859-13// ISO8859-13 1 module INTERNAL ISO-8859-13// ISO8859-13 1
# from to module cost # from to module cost
alias LATIN8// ISO-8859-13// alias LATIN8// ISO-8859-14//
alias L8// ISO-8859-13// alias L8// ISO-8859-14//
alias ISO_8859-14:1998// ISO-8859-14// alias ISO_8859-14:1998// ISO-8859-14//
module ISO-8859-14// INTERNAL ISO8859-14 1 module ISO-8859-14// INTERNAL ISO8859-14 1
module INTERNAL ISO-8859-14// ISO8859-14 1 module INTERNAL ISO-8859-14// ISO8859-14 1

View File

@ -96,8 +96,8 @@ such as arithmetic and printing work properly and consistently no matter
what the underlying representation is. what the underlying representation is.
Note that the clock can wrap around. On a 32bit system with Note that the clock can wrap around. On a 32bit system with
@code{CLOCKS_PER_SEC} set to one million a wrap around happens after @code{CLOCKS_PER_SEC} set to one million this function will return the
around 36 minutes. same value approximately every 72 minutes.
@comment time.h @comment time.h
@comment ISO @comment ISO

View File

@ -55,6 +55,7 @@
#define SIGTSTP 18 #define SIGTSTP 18
#define SIGCONT 19 #define SIGCONT 19
#define SIGCHLD 20 #define SIGCHLD 20
#define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
#define SIGTTIN 21 #define SIGTTIN 21
#define SIGTTOU 22 #define SIGTTOU 22
#define SIGIO 23 #define SIGIO 23