diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-05-06 15:49:45 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-05-10 23:35:44 -0300 |
commit | 7b4e7ca9db350b53cc88ff3d0bc99279225f5cc7 (patch) | |
tree | 377ad643b275aa65c218e8c1336e3fd85f7a398d /sysdeps/pthread | |
parent | 30685597a4f81c8dcd4dd7335debdb72ae450924 (diff) | |
download | glibc-7b4e7ca9db350b53cc88ff3d0bc99279225f5cc7.tar.gz glibc-7b4e7ca9db350b53cc88ff3d0bc99279225f5cc7.tar.xz glibc-7b4e7ca9db350b53cc88ff3d0bc99279225f5cc7.zip |
linux: Move flockfile/_IO_flockfile into libc
The nptl version is used as default, since now with symbol always present the single-thread optimization is tricky. Hurd is not change, it is used it own lock scheme (which call _cthreads_flockfile). Checked on x86_64-linux-gnu.
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r-- | sysdeps/pthread/flockfile.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/sysdeps/pthread/flockfile.c b/sysdeps/pthread/flockfile.c deleted file mode 100644 index c67d6c8535..0000000000 --- a/sysdeps/pthread/flockfile.c +++ /dev/null @@ -1,31 +0,0 @@ -/* Copyright (C) 2002-2021 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - <https://www.gnu.org/licenses/>. */ - -#include <pthread.h> -#include <stdio.h> -#include <stdio-lock.h> - - -void -__flockfile (FILE *stream) -{ - stream->_flags2 |= _IO_FLAGS2_NEED_LOCK; - _IO_lock_lock (*stream->_lock); -} -strong_alias (__flockfile, _IO_flockfile) -weak_alias (__flockfile, flockfile) |