/* * tls-helper.c * * Description: * * -------------------------------------------------------------------------- * * Pthreads-embedded (PTE) - POSIX Threads Library for embedded systems * Copyright(C) 2008 Jason Schmidlapp * * Contact Email: jschmidlapp@users.sourceforge.net * * This 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 of the License, or (at your option) any later version. * * This 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 this library in the file COPYING.LIB; * if not, write to the Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #include #include #include "tls-helper.h" static int *keysUsed; /* We don't protect this - it's only written on startup */ static int maxTlsValues; pte_osMutexHandle globalTlsLock; pte_osResult pteTlsGlobalInit(int maxEntries) { int i; pte_osResult result; pte_osMutexCreate(&globalTlsLock); keysUsed = (int *) malloc(maxEntries * sizeof(int)); if (keysUsed != NULL) { for (i=0;i