Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / mach / hurd / cthreads.c
blobd4c8dd2d1a5f7a1bf7cf99794a0a238bdab18368
1 /* Copyright (C) 1997-2014 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 <http://www.gnu.org/licenses/>. */
18 #include <bits/libc-lock.h>
19 #include <errno.h>
20 #include <stdlib.h>
22 /* Placeholder for key creation routine from Hurd cthreads library. */
23 int
24 weak_function
25 cthread_keycreate (key)
26 cthread_key_t *key;
28 __set_errno (ENOSYS);
29 *key = -1;
30 return -1;
33 /* Placeholder for key retrieval routine from Hurd cthreads library. */
34 int
35 weak_function
36 cthread_getspecific (key, pval)
37 cthread_key_t key;
38 void **pval;
40 *pval = NULL;
41 __set_errno (ENOSYS);
42 return -1;
45 /* Placeholder for key setting routine from Hurd cthreads library. */
46 int
47 weak_function
48 cthread_setspecific (key, val)
49 cthread_key_t key;
50 void *val;
52 __set_errno (ENOSYS);
53 return -1;
56 /* Call cthread_getspecific which gets a pointer to the return value instead
57 of just returning it. */
58 void *
59 __libc_getspecific (key)
60 cthread_key_t key;
62 void *val;
63 cthread_getspecific (key, &val);
64 return val;