diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:51:31 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 12:21:12 +0200 |
commit | 2c16cb88a6e5ace0fb7cedca86860ea7bde522a7 (patch) | |
tree | 8e7aa16a33590ccd27050ef3d3b00607b7f15751 /sysdeps/nptl/Makefile | |
parent | 1a5a653be2f95d4d9485d08672dc5083c74c39d8 (diff) | |
download | glibc-2c16cb88a6e5ace0fb7cedca86860ea7bde522a7.zip glibc-2c16cb88a6e5ace0fb7cedca86860ea7bde522a7.tar.gz glibc-2c16cb88a6e5ace0fb7cedca86860ea7bde522a7.tar.bz2 |
Linux: Move timer helper routines from librt to libc
This adds several temporary GLIBC_PRIVATE exports. The symbol names
are changed so that they all start with __timer_.
It is now possible to invoke the fork handler directly, so
pthread_atfork is no longer necessary. The associated error cannot
happen anymore, and cancellation handling can be removed from
the helper thread routine.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/nptl/Makefile')
-rw-r--r-- | sysdeps/nptl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/nptl/Makefile b/sysdeps/nptl/Makefile index 0707f13..27aa41a 100644 --- a/sysdeps/nptl/Makefile +++ b/sysdeps/nptl/Makefile @@ -17,7 +17,7 @@ # <https://www.gnu.org/licenses/>. ifeq ($(subdir),rt) -librt-sysdep_routines += timer_routines +sysdep_routines += timer_routines tests += tst-mqueue8x CFLAGS-tst-mqueue8x.c += -fexceptions |