aboutsummaryrefslogtreecommitdiff
path: root/libthreads/libthreads.map
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-11-11 01:13:43 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-11-11 01:20:03 +0100
commit3b14ab0254a131e458c4f5ffdee931e868206424 (patch)
tree0a88ed88851e966d3c5f2ac08b4eb243c99c96b0 /libthreads/libthreads.map
parent986c7a7d686a850830f9fc5bea1fadcfe9f4999c (diff)
downloadhurd-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.map27
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:
- *;
- };
-};