mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 17:40:06 +00:00
5fe14d9670
* sysdeps/generic/ldsodefs.h (__rtld_global_attribute__): Define. (_rtld_global): Use it. * sysdeps/gnu/Dist: Remove errlist-compat.c. * sysdeps/gnu/Makefile (errlist-compat.c): Build this file in the object directory. Pass all Versions files to the awk script. * sysdeps/gnu/errlist-compat.c: Removed. * sysdeps/gnu/errlist.awk: Use #errlist-compat comments from the first Versions file in the search path which has them. Allow multiple errlist symbol versions to have the same count of errors. * sysdeps/gnu/errlist-compat.awk: Include <errlist-compat.c> instead of "errlist-compat.c". * sysdeps/gnu/errlist.c: Regenerated. * sysdeps/unix/sysv/linux/mips/Versions (libc): Add #errlist-compat comments at GLIBC_2.0, GLIBC_2.1 and GLIBC_2.3. * sysdeps/unix/sysv/linux/alpha/Versions: Likewise. (librt): Add aio_cancel and aio_cancel64 as GLIBC_2.3. * sysdeps/unix/sysv/linux/hppa/Versions: Likewise. * sysdeps/unix/sysv/linux/sparc/Versions: New file. * sysdeps/unix/sysv/linux/alpha/bits/errno.h: New file. * sysdeps/unix/sysv/linux/hppa/bits/errno.h (ECANCELED): Define to ECANCELLED if not defined by kernel headers. * sysdeps/unix/sysv/linux/bits/errno.h: Don't redefine ECANCELED if already defined by kernel headers. * sysdeps/unix/sysv/linux/sparc/bits/errno.h: New file. * sysdeps/pthread/aio_cancel.c: Don't include aio.h and its aio_cancel64 renaming hack nor provide weak_alias if aio_cancel is a macro. * Versions.def (GLIBC_2.3) [librt]: Add. * sysdeps/unix/sysv/linux/alpha/pipe.S: New file. 2002-08-28 Ulrich Drepper <drepper@redhat.com> * include/libc-symbols.h [!__ASSEMBLER__] (declare_symbol_1): Add missing comma to .type directive. 2002-08-28 Jakub Jelinek <jakub@redhat.com>
83 lines
1.6 KiB
Plaintext
83 lines
1.6 KiB
Plaintext
libc {
|
|
# The comment lines with "#errlist-compat" are magic; see
|
|
# sysdeps/gnu/errlist-compat.awk.
|
|
# When you get an error from errlist-compat.awk, you need to add a new
|
|
# version here. Don't do this blindly, since this means changing the ABI
|
|
# for all GNU/Linux configurations.
|
|
|
|
GLIBC_2.0 {
|
|
#errlist-compat 131
|
|
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
|
|
|
# Unfortunately in wider use.
|
|
_inb; _inw; _inl; _outb; _outw; _outl; _bus_base; _bus_base_sparse;
|
|
_hae_shift;
|
|
|
|
# Exception handling support functions from libgcc
|
|
__register_frame; __register_frame_table; __deregister_frame;
|
|
__frame_state_for; __register_frame_info_table;
|
|
|
|
# b*
|
|
bus_base; bus_base_sparse;
|
|
|
|
# h*
|
|
hae_shift;
|
|
|
|
# i*
|
|
inb; inl; inw; ioperm; iopl;
|
|
|
|
# o*
|
|
outb; outl; outw;
|
|
|
|
# p*
|
|
pciconfig_read; pciconfig_write; sethae;
|
|
}
|
|
GLIBC_2.1 {
|
|
#errlist-compat 131
|
|
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
|
|
|
# Linux/Alpha 64-bit timeval functions.
|
|
__select; select;
|
|
adjtime; adjtimex; __adjtimex;
|
|
__gettimeofday;
|
|
|
|
# glob interface change
|
|
glob; globfree;
|
|
|
|
# limit type change
|
|
getrusage;
|
|
|
|
# time type change
|
|
gettimeofday; getitimer;
|
|
|
|
# i*
|
|
ieee_get_fp_control; ieee_set_fp_control;
|
|
|
|
# s*
|
|
setitimer; settimeofday;
|
|
|
|
# u*
|
|
utimes;
|
|
|
|
# w*
|
|
wait4;
|
|
}
|
|
GLIBC_2.1.4 {
|
|
pciconfig_iobase;
|
|
}
|
|
GLIBC_2.2.2 {
|
|
# w*
|
|
wordexp;
|
|
}
|
|
GLIBC_2.3 {
|
|
#errlist-compat 132
|
|
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
|
}
|
|
}
|
|
librt {
|
|
GLIBC_2.3 {
|
|
# AIO functions.
|
|
aio_cancel; aio_cancel64;
|
|
}
|
|
}
|