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/>. */
25 __pthread_setspecific (key, value)
32 struct pthread_key_data *level2;
37 /* Special case access to the first 2nd-level block. This is the
39 if (__glibc_likely (key < PTHREAD_KEY_2NDLEVEL_SIZE))
41 /* Verify the key is sane. */
42 if (KEY_UNUSED ((seq = __pthread_keys[key].seq)))
46 level2 = &self->specific_1stblock[key];
48 /* Remember that we stored at least one set of data. */
50 THREAD_SETMEM (self, specific_used, true);
54 if (key >= PTHREAD_KEYS_MAX
55 || KEY_UNUSED ((seq = __pthread_keys[key].seq)))
59 idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE;
60 idx2nd = key % PTHREAD_KEY_2NDLEVEL_SIZE;
62 /* This is the second level array. Allocate it if necessary. */
63 level2 = THREAD_GETMEM_NC (self, specific, idx1st);
67 /* We don't have to do anything. The value would in any case
68 be NULL. We can save the memory allocation. */
72 = (struct pthread_key_data *) calloc (PTHREAD_KEY_2NDLEVEL_SIZE,
77 THREAD_SETMEM_NC (self, specific, idx1st, level2);
80 /* Pointer to the right array element. */
81 level2 = &level2[idx2nd];
83 /* Remember that we stored at least one set of data. */
84 THREAD_SETMEM (self, specific_used, true);
87 /* Store the data and the sequence number so that we can recognize
90 level2->data = (void *) value;
94 strong_alias (__pthread_setspecific, pthread_setspecific)
95 hidden_def (__pthread_setspecific)