hurd: Stop mapping AT_NO_AUTOMOUNT to O_NOTRANS
[glibc.git] / login / getutent_r.c
blob38bed4f23d935e2bf5b45d41cacb3c257b274027
1 /* Copyright (C) 1996-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 #include <libc-lock.h>
19 #include <stdlib.h>
20 #include <utmp.h>
22 #include "utmp-private.h"
24 /* We need to protect the opening of the file. */
25 __libc_lock_define_initialized (, __libc_utmp_lock attribute_hidden)
28 void
29 __setutent (void)
31 __libc_lock_lock (__libc_utmp_lock);
33 __libc_setutent ();
35 __libc_lock_unlock (__libc_utmp_lock);
37 libc_hidden_def (__setutent)
38 weak_alias (__setutent, setutent)
41 int
42 __getutent_r (struct utmp *buffer, struct utmp **result)
44 int retval;
46 __libc_lock_lock (__libc_utmp_lock);
48 retval = __libc_getutent_r (buffer, result);
50 __libc_lock_unlock (__libc_utmp_lock);
52 return retval;
54 libc_hidden_def (__getutent_r)
55 weak_alias (__getutent_r, getutent_r)
58 struct utmp *
59 __pututline (const struct utmp *data)
61 struct utmp *buffer;
63 __libc_lock_lock (__libc_utmp_lock);
65 buffer = __libc_pututline (data);
67 __libc_lock_unlock (__libc_utmp_lock);
69 return buffer;
71 libc_hidden_def (__pututline)
72 weak_alias (__pututline, pututline)
75 void
76 __endutent (void)
78 __libc_lock_lock (__libc_utmp_lock);
80 __libc_endutent ();
82 __libc_lock_unlock (__libc_utmp_lock);
84 libc_hidden_def (__endutent)
85 weak_alias (__endutent, endutent)