diff options
author | gfleury <gfleury@disroot.org> | 2025-01-03 12:37:45 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-29 02:32:36 +0100 |
commit | e892a930736ba8f3c19a47dc0f46fec87da38313 (patch) | |
tree | a73bbbe667ddb0e5157b576ee2c37b70903f3302 /sysdeps/htl/timer_routines.c | |
parent | 56b25bfd60b736c7e7124b6fdd505a5622531a87 (diff) | |
download | glibc-e892a930736ba8f3c19a47dc0f46fec87da38313.zip glibc-e892a930736ba8f3c19a47dc0f46fec87da38313.tar.gz glibc-e892a930736ba8f3c19a47dc0f46fec87da38313.tar.bz2 |
htl: move pthread_mutex_init into libc.
Message-ID: <20250103103750.870897-2-gfleury@disroot.org>
Diffstat (limited to 'sysdeps/htl/timer_routines.c')
-rw-r--r-- | sysdeps/htl/timer_routines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/htl/timer_routines.c b/sysdeps/htl/timer_routines.c index 2e01918..2039e0b 100644 --- a/sysdeps/htl/timer_routines.c +++ b/sysdeps/htl/timer_routines.c @@ -191,7 +191,7 @@ static void reinit_after_fork (void) { init_module (); - pthread_mutex_init (&__timer_mutex, 0); + __pthread_mutex_init (&__timer_mutex, 0); } |