1 // Threading support -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
31 * Copyright (c) 1997-1999
32 * Silicon Graphics Computer Systems, Inc.
34 * Permission to use, copy, modify, distribute and sell this software
35 * and its documentation for any purpose is hereby granted without fee,
36 * provided that the above copyright notice appear in all copies and
37 * that both that copyright notice and this permission notice appear
38 * in supporting documentation. Silicon Graphics makes no
39 * representations about the suitability of this software for any
40 * purpose. It is provided "as is" without express or implied warranty.
43 /** @file stl_threads.h
44 * This is an internal header file, included by other library headers.
45 * You should not attempt to use it directly.
48 #ifndef _STL_THREADS_H
49 #define _STL_THREADS_H 1
53 // The only supported threading model is GCC's own gthr.h abstraction
55 #include "bits/gthr.h"
57 namespace __gnu_internal
59 #if !defined(__GTHREAD_MUTEX_INIT) && defined(__GTHREAD_MUTEX_INIT_FUNCTION)
60 extern __gthread_mutex_t _GLIBCXX_mutex
;
61 extern __gthread_mutex_t
*_GLIBCXX_mutex_address
;
62 extern __gthread_once_t _GLIBCXX_once
;
63 extern void _GLIBCXX_mutex_init(void);
64 extern void _GLIBCXX_mutex_address_init(void);
66 } // namespace __gnu_internal
70 // Locking class. Note that this class *does not have a
71 // constructor*. It must be initialized either statically, with
72 // __STL_MUTEX_INITIALIZER, or dynamically, by explicitly calling
73 // the _M_initialize member function. (This is similar to the ways
74 // that a pthreads mutex can be initialized.) There are explicit
75 // member functions for acquiring and releasing the lock.
77 // There is no constructor because static initialization is
78 // essential for some uses, and only a class aggregate (see section
79 // 8.5.1 of the C++ standard) can be initialized that way. That
80 // means we must have no constructors, no base classes, no virtual
81 // functions, and no private or protected members.
82 struct _STL_mutex_lock
84 // The class must be statically initialized with __STL_MUTEX_INITIALIZER.
85 #if !defined(__GTHREAD_MUTEX_INIT) && defined(__GTHREAD_MUTEX_INIT_FUNCTION)
86 volatile int _M_init_flag
;
87 __gthread_once_t _M_once
;
89 __gthread_mutex_t _M_lock
;
94 #ifdef __GTHREAD_MUTEX_INIT
95 // There should be no code in this path given the usage rules above.
96 #elif defined(__GTHREAD_MUTEX_INIT_FUNCTION)
97 if (_M_init_flag
) return;
98 if (__gthread_once(&__gnu_internal::_GLIBCXX_once
,
99 __gnu_internal::_GLIBCXX_mutex_init
) != 0
100 && __gthread_active_p())
102 __gthread_mutex_lock(&__gnu_internal::_GLIBCXX_mutex
);
105 // Even though we have a global lock, we use __gthread_once to be
106 // absolutely certain the _M_lock mutex is only initialized once on
107 // multiprocessor systems.
108 __gnu_internal::_GLIBCXX_mutex_address
= &_M_lock
;
109 if (__gthread_once(&_M_once
,
110 __gnu_internal::_GLIBCXX_mutex_address_init
) != 0
111 && __gthread_active_p())
115 __gthread_mutex_unlock(&__gnu_internal::_GLIBCXX_mutex
);
122 #if !defined(__GTHREAD_MUTEX_INIT) && defined(__GTHREAD_MUTEX_INIT_FUNCTION)
123 if (!_M_init_flag
) _M_initialize();
125 __gthread_mutex_lock(&_M_lock
);
131 #if !defined(__GTHREAD_MUTEX_INIT) && defined(__GTHREAD_MUTEX_INIT_FUNCTION)
132 if (!_M_init_flag
) _M_initialize();
134 __gthread_mutex_unlock(&_M_lock
);
138 #ifdef __GTHREAD_MUTEX_INIT
139 #define __STL_MUTEX_INITIALIZER = { __GTHREAD_MUTEX_INIT }
140 #elif defined(__GTHREAD_MUTEX_INIT_FUNCTION)
141 #ifdef __GTHREAD_MUTEX_INIT_DEFAULT
142 #define __STL_MUTEX_INITIALIZER \
143 = { 0, __GTHREAD_ONCE_INIT, __GTHREAD_MUTEX_INIT_DEFAULT }
145 #define __STL_MUTEX_INITIALIZER = { 0, __GTHREAD_ONCE_INIT }
148 } // namespace __gnu_cxx