diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-05-06 16:10:28 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-05-10 23:35:44 -0300 |
commit | 1abc2fba5573205fd0669f82ffd37423a094207a (patch) | |
tree | 1c9da0bf4b723a14f043c2ca565219b7329ac0d0 /sysdeps/pthread | |
parent | e874d3d189f355fdf0e9ef9c0d0f493c6cf767be (diff) | |
download | glibc-1abc2fba5573205fd0669f82ffd37423a094207a.tar glibc-1abc2fba5573205fd0669f82ffd37423a094207a.tar.gz glibc-1abc2fba5573205fd0669f82ffd37423a094207a.tar.bz2 glibc-1abc2fba5573205fd0669f82ffd37423a094207a.zip |
linux: Move funlockfile/_IO_funlockfile 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_funlockfile).
Checked on x86_64-linux-gnu.
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r-- | sysdeps/pthread/funlockfile.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sysdeps/pthread/funlockfile.c b/sysdeps/pthread/funlockfile.c deleted file mode 100644 index 0ee5cb6451..0000000000 --- a/sysdeps/pthread/funlockfile.c +++ /dev/null @@ -1,30 +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 -__funlockfile (FILE *stream) -{ - _IO_lock_unlock (*stream->_lock); -} -strong_alias (__funlockfile, _IO_funlockfile) -weak_alias (__funlockfile, funlockfile) |