xref: /relibc/pthreads-emb/pte_mutex_check_need_init.c (revision 062c5bc4dfeed2c1bed58ed4810dd27adb32c68d)
1*062c5bc4SJason Schmidlapp /*
2*062c5bc4SJason Schmidlapp  * pte_mutex_check_need_init.c
3*062c5bc4SJason Schmidlapp  *
4*062c5bc4SJason Schmidlapp  * Description:
5*062c5bc4SJason Schmidlapp  * This translation unit implements mutual exclusion (mutex) primitives.
6*062c5bc4SJason Schmidlapp  *
7*062c5bc4SJason Schmidlapp  * --------------------------------------------------------------------------
8*062c5bc4SJason Schmidlapp  *
9*062c5bc4SJason Schmidlapp  *      Pthreads-embedded (PTE) - POSIX Threads Library for embedded systems
10*062c5bc4SJason Schmidlapp  *      Copyright(C) 2008 Jason Schmidlapp
11*062c5bc4SJason Schmidlapp  *
12*062c5bc4SJason Schmidlapp  *      Contact Email: jschmidlapp@users.sourceforge.net
13*062c5bc4SJason Schmidlapp  *
14*062c5bc4SJason Schmidlapp  *
15*062c5bc4SJason Schmidlapp  *      Based upon Pthreads-win32 - POSIX Threads Library for Win32
16*062c5bc4SJason Schmidlapp  *      Copyright(C) 1998 John E. Bossom
17*062c5bc4SJason Schmidlapp  *      Copyright(C) 1999,2005 Pthreads-win32 contributors
18*062c5bc4SJason Schmidlapp  *
19*062c5bc4SJason Schmidlapp  *      Contact Email: rpj@callisto.canberra.edu.au
20*062c5bc4SJason Schmidlapp  *
21*062c5bc4SJason Schmidlapp  *      The original list of contributors to the Pthreads-win32 project
22*062c5bc4SJason Schmidlapp  *      is contained in the file CONTRIBUTORS.ptw32 included with the
23*062c5bc4SJason Schmidlapp  *      source code distribution. The list can also be seen at the
24*062c5bc4SJason Schmidlapp  *      following World Wide Web location:
25*062c5bc4SJason Schmidlapp  *      http://sources.redhat.com/pthreads-win32/contributors.html
26*062c5bc4SJason Schmidlapp  *
27*062c5bc4SJason Schmidlapp  *      This library is free software; you can redistribute it and/or
28*062c5bc4SJason Schmidlapp  *      modify it under the terms of the GNU Lesser General Public
29*062c5bc4SJason Schmidlapp  *      License as published by the Free Software Foundation; either
30*062c5bc4SJason Schmidlapp  *      version 2 of the License, or (at your option) any later version.
31*062c5bc4SJason Schmidlapp  *
32*062c5bc4SJason Schmidlapp  *      This library is distributed in the hope that it will be useful,
33*062c5bc4SJason Schmidlapp  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
34*062c5bc4SJason Schmidlapp  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
35*062c5bc4SJason Schmidlapp  *      Lesser General Public License for more details.
36*062c5bc4SJason Schmidlapp  *
37*062c5bc4SJason Schmidlapp  *      You should have received a copy of the GNU Lesser General Public
38*062c5bc4SJason Schmidlapp  *      License along with this library in the file COPYING.LIB;
39*062c5bc4SJason Schmidlapp  *      if not, write to the Free Software Foundation, Inc.,
40*062c5bc4SJason Schmidlapp  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
41*062c5bc4SJason Schmidlapp  */
42*062c5bc4SJason Schmidlapp 
43*062c5bc4SJason Schmidlapp 
44*062c5bc4SJason Schmidlapp #include "pthread.h"
45*062c5bc4SJason Schmidlapp #include "implement.h"
46*062c5bc4SJason Schmidlapp 
47*062c5bc4SJason Schmidlapp 
48*062c5bc4SJason Schmidlapp static struct pthread_mutexattr_t_ pte_recursive_mutexattr_s =
49*062c5bc4SJason Schmidlapp   {
50*062c5bc4SJason Schmidlapp     PTHREAD_PROCESS_PRIVATE, PTHREAD_MUTEX_RECURSIVE
51*062c5bc4SJason Schmidlapp   };
52*062c5bc4SJason Schmidlapp static struct pthread_mutexattr_t_ pte_errorcheck_mutexattr_s =
53*062c5bc4SJason Schmidlapp   {
54*062c5bc4SJason Schmidlapp     PTHREAD_PROCESS_PRIVATE, PTHREAD_MUTEX_ERRORCHECK
55*062c5bc4SJason Schmidlapp   };
56*062c5bc4SJason Schmidlapp static pthread_mutexattr_t pte_recursive_mutexattr = &pte_recursive_mutexattr_s;
57*062c5bc4SJason Schmidlapp static pthread_mutexattr_t pte_errorcheck_mutexattr = &pte_errorcheck_mutexattr_s;
58*062c5bc4SJason Schmidlapp 
59*062c5bc4SJason Schmidlapp 
60*062c5bc4SJason Schmidlapp int
pte_mutex_check_need_init(pthread_mutex_t * mutex)61*062c5bc4SJason Schmidlapp pte_mutex_check_need_init (pthread_mutex_t * mutex)
62*062c5bc4SJason Schmidlapp {
63*062c5bc4SJason Schmidlapp   register int result = 0;
64*062c5bc4SJason Schmidlapp   register pthread_mutex_t mtx;
65*062c5bc4SJason Schmidlapp 
66*062c5bc4SJason Schmidlapp   /*
67*062c5bc4SJason Schmidlapp    * The following guarded test is specifically for statically
68*062c5bc4SJason Schmidlapp    * initialised mutexes (via PTHREAD_MUTEX_INITIALIZER).
69*062c5bc4SJason Schmidlapp    *
70*062c5bc4SJason Schmidlapp    * Note that by not providing this synchronisation we risk
71*062c5bc4SJason Schmidlapp    * introducing race conditions into applications which are
72*062c5bc4SJason Schmidlapp    * correctly written.
73*062c5bc4SJason Schmidlapp    *
74*062c5bc4SJason Schmidlapp    * Approach
75*062c5bc4SJason Schmidlapp    * --------
76*062c5bc4SJason Schmidlapp    * We know that static mutexes will not be PROCESS_SHARED
77*062c5bc4SJason Schmidlapp    * so we can serialise access to internal state using
78*062c5bc4SJason Schmidlapp    * critical sections rather than mutexes.
79*062c5bc4SJason Schmidlapp    *
80*062c5bc4SJason Schmidlapp    * If using a single global lock slows applications down too much,
81*062c5bc4SJason Schmidlapp    * multiple global locks could be created and hashed on some random
82*062c5bc4SJason Schmidlapp    * value associated with each mutex, the pointer perhaps. At a guess,
83*062c5bc4SJason Schmidlapp    * a good value for the optimal number of global locks might be
84*062c5bc4SJason Schmidlapp    * the number of processors + 1.
85*062c5bc4SJason Schmidlapp    *
86*062c5bc4SJason Schmidlapp    */
87*062c5bc4SJason Schmidlapp 
88*062c5bc4SJason Schmidlapp 
89*062c5bc4SJason Schmidlapp   pte_osMutexLock (pte_mutex_test_init_lock);
90*062c5bc4SJason Schmidlapp 
91*062c5bc4SJason Schmidlapp   /*
92*062c5bc4SJason Schmidlapp    * We got here possibly under race
93*062c5bc4SJason Schmidlapp    * conditions. Check again inside the critical section
94*062c5bc4SJason Schmidlapp    * and only initialise if the mutex is valid (not been destroyed).
95*062c5bc4SJason Schmidlapp    * If a static mutex has been destroyed, the application can
96*062c5bc4SJason Schmidlapp    * re-initialise it only by calling pthread_mutex_init()
97*062c5bc4SJason Schmidlapp    * explicitly.
98*062c5bc4SJason Schmidlapp    */
99*062c5bc4SJason Schmidlapp   mtx = *mutex;
100*062c5bc4SJason Schmidlapp 
101*062c5bc4SJason Schmidlapp   if (mtx == PTHREAD_MUTEX_INITIALIZER)
102*062c5bc4SJason Schmidlapp     {
103*062c5bc4SJason Schmidlapp       result = pthread_mutex_init (mutex, NULL);
104*062c5bc4SJason Schmidlapp     }
105*062c5bc4SJason Schmidlapp   else if (mtx == PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
106*062c5bc4SJason Schmidlapp     {
107*062c5bc4SJason Schmidlapp       result = pthread_mutex_init (mutex, &pte_recursive_mutexattr);
108*062c5bc4SJason Schmidlapp     }
109*062c5bc4SJason Schmidlapp   else if (mtx == PTHREAD_ERRORCHECK_MUTEX_INITIALIZER)
110*062c5bc4SJason Schmidlapp     {
111*062c5bc4SJason Schmidlapp       result = pthread_mutex_init (mutex, &pte_errorcheck_mutexattr);
112*062c5bc4SJason Schmidlapp     }
113*062c5bc4SJason Schmidlapp   else if (mtx == NULL)
114*062c5bc4SJason Schmidlapp     {
115*062c5bc4SJason Schmidlapp       /*
116*062c5bc4SJason Schmidlapp        * The mutex has been destroyed while we were waiting to
117*062c5bc4SJason Schmidlapp        * initialise it, so the operation that caused the
118*062c5bc4SJason Schmidlapp        * auto-initialisation should fail.
119*062c5bc4SJason Schmidlapp        */
120*062c5bc4SJason Schmidlapp       result = EINVAL;
121*062c5bc4SJason Schmidlapp     }
122*062c5bc4SJason Schmidlapp 
123*062c5bc4SJason Schmidlapp   pte_osMutexUnlock(pte_mutex_test_init_lock);
124*062c5bc4SJason Schmidlapp 
125*062c5bc4SJason Schmidlapp   return (result);
126*062c5bc4SJason Schmidlapp }
127*062c5bc4SJason Schmidlapp 
128*062c5bc4SJason Schmidlapp 
129*062c5bc4SJason Schmidlapp 
130