mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-16 07:21:57 +03:00
Update.
2002-04-15 H.J. Lu <hjl@gnu.org> * include/math.h (__finitel_internal): Declare only if __NO_LONG_DOUBLE_MATH is not defined. (__isinfl_internal): Likewise. (__isnanl_internal): Likewise. * sysdeps/unix/sysv/linux/alpha/syscalls.list: Add __connect_internal. * sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/syscalls.list: Add __chown_internal and __fcntl_internal. * sysdeps/unix/sysv/linux/fxstat.c (__fxstat64_internal): Added. * sysdeps/unix/sysv/linux/lxstat.c (__lxstat64_internal): Added.
This commit is contained in:
20
ChangeLog
20
ChangeLog
@ -1,3 +1,23 @@
|
|||||||
|
2002-04-15 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* include/math.h (__finitel_internal): Declare only if
|
||||||
|
__NO_LONG_DOUBLE_MATH is not defined.
|
||||||
|
(__isinfl_internal): Likewise.
|
||||||
|
(__isnanl_internal): Likewise.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/syscalls.list: Add __connect_internal.
|
||||||
|
* sysdeps/unix/sysv/linux/hppa/syscalls.list: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/syscalls.list: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/mips/syscalls.list: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/syscalls.list: Add __chown_internal and
|
||||||
|
__fcntl_internal.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/fxstat.c (__fxstat64_internal): Added.
|
||||||
|
* sysdeps/unix/sysv/linux/lxstat.c (__lxstat64_internal): Added.
|
||||||
|
|
||||||
2002-04-15 Bruno Haible <bruno@clisp.org>
|
2002-04-15 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
* iconvdata/armscii-8.c (BODY for FROM_LOOP): Fix array access.
|
* iconvdata/armscii-8.c (BODY for FROM_LOOP): Fix array access.
|
||||||
|
@ -9,17 +9,21 @@ extern int __finite_internal (double __value)
|
|||||||
__attribute__ ((__const__)) attribute_hidden;
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
extern int __finitef_internal (float __value)
|
extern int __finitef_internal (float __value)
|
||||||
__attribute__ ((__const__)) attribute_hidden;
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
extern int __finitel_internal (long double __value)
|
|
||||||
__attribute__ ((__const__)) attribute_hidden;
|
|
||||||
|
|
||||||
extern int __isinf_internal (double __value)
|
extern int __isinf_internal (double __value)
|
||||||
__attribute__ ((__const__)) attribute_hidden;
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
extern int __isinfl_internal (long double __value)
|
|
||||||
__attribute__ ((__const__)) attribute_hidden;
|
|
||||||
extern int __isnan_internal (double __value)
|
extern int __isnan_internal (double __value)
|
||||||
__attribute__ ((__const__)) attribute_hidden;
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
|
|
||||||
|
#ifndef __NO_LONG_DOUBLE_MATH
|
||||||
|
extern int __finitel_internal (long double __value)
|
||||||
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
|
|
||||||
|
extern int __isinfl_internal (long double __value)
|
||||||
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
extern int __isnanl_internal (long double __value)
|
extern int __isnanl_internal (long double __value)
|
||||||
__attribute__ ((__const__)) attribute_hidden;
|
__attribute__ ((__const__)) attribute_hidden;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined NOT_IN_libc || defined IS_IN_libm
|
#if !defined NOT_IN_libc || defined IS_IN_libm
|
||||||
# undef isfinite
|
# undef isfinite
|
||||||
|
@ -1,3 +1,18 @@
|
|||||||
|
2002-04-15 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
|
* charmaps/IBM856: New file.
|
||||||
|
* charmaps/IBM922: New file.
|
||||||
|
* charmaps/IBM1124: New file.
|
||||||
|
* charmaps/IBM1129: New file.
|
||||||
|
* charmaps/IBM1160: New file.
|
||||||
|
* charmaps/IBM1161: New file.
|
||||||
|
* charmaps/IBM1132: New file.
|
||||||
|
* charmaps/IBM1133: New file.
|
||||||
|
* charmaps/IBM1162: New file.
|
||||||
|
* charmaps/IBM1163: New file.
|
||||||
|
* charmaps/IBM1164: New file.
|
||||||
|
* charmaps/ARMSCII-8: New file.
|
||||||
|
|
||||||
2002-04-14 Wolfram Gloger <wg@malloc.de>
|
2002-04-14 Wolfram Gloger <wg@malloc.de>
|
||||||
|
|
||||||
* tests-mbwc/tst_types.h: Increase MONSIZE.
|
* tests-mbwc/tst_types.h: Increase MONSIZE.
|
||||||
|
@ -36,7 +36,7 @@ sys_mknod xmknod mknod 3 __syscall_mknod
|
|||||||
# proper socket implementations:
|
# proper socket implementations:
|
||||||
accept - accept 3 __libc_accept __accept accept
|
accept - accept 3 __libc_accept __accept accept
|
||||||
bind - bind 3 __bind bind
|
bind - bind 3 __bind bind
|
||||||
connect - connect 3 __libc_connect __connect connect
|
connect - connect 3 __libc_connect __connect_internal __connect connect
|
||||||
getpeername - getpeername 3 __getpeername getpeername
|
getpeername - getpeername 3 __getpeername getpeername
|
||||||
getsockname - getsockname 3 __getsockname getsockname
|
getsockname - getsockname 3 __getsockname getsockname
|
||||||
getsockopt - getsockopt 5 __getsockopt getsockopt
|
getsockopt - getsockopt 5 __getsockopt getsockopt
|
||||||
|
@ -20,9 +20,11 @@
|
|||||||
/* Ho hum, if xstat == xstat64 we must get rid of the prototype or gcc
|
/* Ho hum, if xstat == xstat64 we must get rid of the prototype or gcc
|
||||||
will complain since they don't strictly match. */
|
will complain since they don't strictly match. */
|
||||||
#define __fxstat64 __fxstat64_disable
|
#define __fxstat64 __fxstat64_disable
|
||||||
|
#define __fxstat64_internal __fxstat64_internal_disable
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <kernel_stat.h>
|
#include <kernel_stat.h>
|
||||||
|
|
||||||
@ -57,6 +59,7 @@ INTDEF(__fxstat)
|
|||||||
weak_alias (__fxstat, _fxstat);
|
weak_alias (__fxstat, _fxstat);
|
||||||
#ifdef XSTAT_IS_XSTAT64
|
#ifdef XSTAT_IS_XSTAT64
|
||||||
#undef __fxstat64
|
#undef __fxstat64
|
||||||
|
#undef __fxstat64_internal
|
||||||
strong_alias (__fxstat, __fxstat64);
|
strong_alias (__fxstat, __fxstat64);
|
||||||
INTDEF(__fxstat64)
|
INTDEF(__fxstat64)
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@ semctl - semctl i:iiii __semctl semctl
|
|||||||
# proper socket implementations:
|
# proper socket implementations:
|
||||||
accept - accept i:iBN __libc_accept __accept accept
|
accept - accept i:iBN __libc_accept __accept accept
|
||||||
bind - bind i:ipi __bind bind
|
bind - bind i:ipi __bind bind
|
||||||
connect - connect i:ipi __libc_connect __connect connect
|
connect - connect i:ipi __libc_connect __connect_internal __connect connect
|
||||||
getpeername - getpeername i:ipp __getpeername getpeername
|
getpeername - getpeername i:ipp __getpeername getpeername
|
||||||
getsockname - getsockname i:ipp __getsockname getsockname
|
getsockname - getsockname i:ipp __getsockname getsockname
|
||||||
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
||||||
|
@ -32,7 +32,7 @@ semctl - semctl i:iiii __semctl semctl
|
|||||||
# proper socket implementations:
|
# proper socket implementations:
|
||||||
accept - accept i:iBN __libc_accept __accept accept
|
accept - accept i:iBN __libc_accept __accept accept
|
||||||
bind - bind i:ipi __bind bind
|
bind - bind i:ipi __bind bind
|
||||||
connect - connect i:ipi __libc_connect __connect connect
|
connect - connect i:ipi __libc_connect __connect_internal __connect connect
|
||||||
getpeername - getpeername i:ipp __getpeername getpeername
|
getpeername - getpeername i:ipp __getpeername getpeername
|
||||||
getsockname - getsockname i:ipp __getsockname getsockname
|
getsockname - getsockname i:ipp __getsockname getsockname
|
||||||
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
/* Ho hum, if xstat == xstat64 we must get rid of the prototype or gcc
|
/* Ho hum, if xstat == xstat64 we must get rid of the prototype or gcc
|
||||||
will complain since they don't strictly match. */
|
will complain since they don't strictly match. */
|
||||||
#define __lxstat64 __lxstat64_disable
|
#define __lxstat64 __lxstat64_disable
|
||||||
|
#define __lxstat64_internal __lxstat64_internal_disable
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
@ -59,6 +60,7 @@ INTDEF(__lxstat)
|
|||||||
weak_alias (__lxstat, _lxstat);
|
weak_alias (__lxstat, _lxstat);
|
||||||
#ifdef XSTAT_IS_XSTAT64
|
#ifdef XSTAT_IS_XSTAT64
|
||||||
#undef __lxstat64
|
#undef __lxstat64
|
||||||
INTDEF(__lxstat64)
|
#undef __lxstat64_internal
|
||||||
strong_alias (__lxstat, __lxstat64);
|
strong_alias (__lxstat, __lxstat64);
|
||||||
|
INTDEF(__lxstat64)
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@ s_sigsuspend sigsuspend sigsuspend i:p __syscall_sigsuspend
|
|||||||
#
|
#
|
||||||
accept - accept i:iBN __libc_accept __accept accept
|
accept - accept i:iBN __libc_accept __accept accept
|
||||||
bind - bind i:ipi __bind bind
|
bind - bind i:ipi __bind bind
|
||||||
connect - connect i:ipi __libc_connect __connect connect
|
connect - connect i:ipi __libc_connect __connect_internal __connect connect
|
||||||
getpeername - getpeername i:ipp __getpeername getpeername
|
getpeername - getpeername i:ipp __getpeername getpeername
|
||||||
getsockname - getsockname i:ipp __getsockname getsockname
|
getsockname - getsockname i:ipp __getsockname getsockname
|
||||||
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
||||||
|
@ -16,7 +16,7 @@ mmap - mmap 6 __mmap mmap __mmap64 mmap64
|
|||||||
select - select 5 __select select
|
select - select 5 __select select
|
||||||
accept - accept 3 __libc_accept __accept accept
|
accept - accept 3 __libc_accept __accept accept
|
||||||
bind - bind 3 __bind bind
|
bind - bind 3 __bind bind
|
||||||
connect - connect 3 __libc_connect __connect connect
|
connect - connect 3 __libc_connect __connect_internal __connect connect
|
||||||
getpeername - getpeername 3 __getpeername getpeername
|
getpeername - getpeername 3 __getpeername getpeername
|
||||||
getsockname - getsockname 3 __getsockname getsockname
|
getsockname - getsockname 3 __getsockname getsockname
|
||||||
getsockopt - getsockopt 5 __getsockopt getsockopt
|
getsockopt - getsockopt 5 __getsockopt getsockopt
|
||||||
|
@ -60,3 +60,6 @@ swapon - swapon i:si __swapon swapon
|
|||||||
swapoff - swapoff i:s __swapoff swapoff
|
swapoff - swapoff i:s __swapoff swapoff
|
||||||
uselib EXTRA uselib i:s uselib
|
uselib EXTRA uselib i:s uselib
|
||||||
wait4 - wait4 i:iWiP __wait4 wait4
|
wait4 - wait4 i:iWiP __wait4 wait4
|
||||||
|
|
||||||
|
chown - chown i:sii __chown_internal __chown chown
|
||||||
|
fcntl - fcntl i:iiF __libc_fcntl __fcntl_internal __fcntl fcntl
|
||||||
|
@ -32,7 +32,7 @@ semctl - semctl i:iiii __semctl semctl
|
|||||||
# proper socket implementations:
|
# proper socket implementations:
|
||||||
accept - accept i:iBN __libc_accept __accept accept
|
accept - accept i:iBN __libc_accept __accept accept
|
||||||
bind - bind i:ipi __bind bind
|
bind - bind i:ipi __bind bind
|
||||||
connect - connect i:ipi __libc_connect __connect connect
|
connect - connect i:ipi __libc_connect __connect_internal __connect connect
|
||||||
getpeername - getpeername i:ipp __getpeername getpeername
|
getpeername - getpeername i:ipp __getpeername getpeername
|
||||||
getsockname - getsockname i:ipp __getsockname getsockname
|
getsockname - getsockname i:ipp __getsockname getsockname
|
||||||
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
getsockopt - getsockopt i:iiiBN __getsockopt getsockopt
|
||||||
|
Reference in New Issue
Block a user