diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-11 01:13:43 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-11 01:20:03 +0100 |
commit | 3b14ab0254a131e458c4f5ffdee931e868206424 (patch) | |
tree | 0a88ed88851e966d3c5f2ac08b4eb243c99c96b0 /libthreads/libthreads.map | |
parent | 986c7a7d686a850830f9fc5bea1fadcfe9f4999c (diff) | |
download | hurd-3b14ab0254a131e458c4f5ffdee931e868206424.tar.gz hurd-3b14ab0254a131e458c4f5ffdee931e868206424.tar.bz2 hurd-3b14ab0254a131e458c4f5ffdee931e868206424.zip |
libthreads: Remove
libthreads is most probably completely broken, and not the long-term
road anyway.
* config.make.in (VERSIONING): Remove.
* configure.ac: Test for pfinet assembly compatibility instead of
libthreads assembly compatibility. Do not set VERSIONING.
* libthreads: Remove directory.
* Makefile (lib-subdirs): Remove libthreads.
* doc/hurd.texi (Threads Library): Rename references to libthreads into
libpthread.
* release/rfloppy.copy: Do not objcopy lib/libthreads.so.
* release/tool-Makefile (rfloppy-solib): Remove libthreads.
Diffstat (limited to 'libthreads/libthreads.map')
-rw-r--r-- | libthreads/libthreads.map | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libthreads/libthreads.map b/libthreads/libthreads.map deleted file mode 100644 index 1a041f71..00000000 --- a/libthreads/libthreads.map +++ /dev/null @@ -1,27 +0,0 @@ -/* This is the version script file used for building libthreads.so. -*- C -*- - It is in the form of a linker script, to be including as an input - file in the link command, rather than with --version-script. */ - -/* We only use this file when we build against a libio-using libc, - which we presume will be 2.2 that is expecting our lockfile.c - hooks. Therefore the flockfile functions are added to the - GLIBC_2.2.6 version node. The rest of the library's symbols will use - HURD_CTHREADS_0.3. */ - -VERSION -{ - GLIBC_2.2.6 - { - global: - _IO_flockfile; _IO_funlockfile; _IO_ftrylockfile; - flockfile; funlockfile; ftrylockfile; - local: - _cthreads_flockfile; _cthreads_funlockfile; _cthreads_ftrylockfile; - }; - - HURD_CTHREADS_0.3 - { - global: - *; - }; -}; |