Update copyright notices with scripts/update-copyrights
[glibc.git] / nptl / sem_close.c
blob05ebff1f1e9335c7aaa8fd0a4d6d85e40d7c75fa
1 /* Copyright (C) 2002-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <search.h>
21 #include <sys/mman.h>
22 #include "semaphoreP.h"
25 /* Global variables to parametrize the walk function. This works
26 since we always have to use locks. And we have to use the twalk
27 function since the entries are not sorted wrt the mapping
28 address. */
29 static sem_t *the_sem;
30 static struct inuse_sem *rec;
32 static void
33 walker (const void *inodep, const VISIT which, const int depth)
35 struct inuse_sem *nodep = *(struct inuse_sem **) inodep;
37 if (nodep->sem == the_sem)
38 rec = nodep;
42 int
43 sem_close (sem)
44 sem_t *sem;
46 int result = 0;
48 /* Get the lock. */
49 lll_lock (__sem_mappings_lock, LLL_PRIVATE);
51 /* Locate the entry for the mapping the caller provided. */
52 rec = NULL;
53 the_sem = sem;
54 twalk (__sem_mappings, walker);
55 if (rec != NULL)
57 /* Check the reference counter. If it is going to be zero, free
58 all the resources. */
59 if (--rec->refcnt == 0)
61 /* Remove the record from the tree. */
62 (void) tdelete (rec, &__sem_mappings, __sem_search);
64 result = munmap (rec->sem, sizeof (sem_t));
66 free (rec);
69 else
71 /* This is no valid semaphore. */
72 result = -1;
73 __set_errno (EINVAL);
76 /* Release the lock. */
77 lll_unlock (__sem_mappings_lock, LLL_PRIVATE);
79 return result;