1 /* Copyright (C) 2005 Free Software Foundation, Inc.
2 Contributed by Richard Henderson <rth@redhat.com>.
4 This file is part of the GNU OpenMP Library (libgomp).
6 Libgomp is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
16 You should have received a copy of the GNU Lesser General Public License
17 along with libgomp; see the file COPYING.LIB. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 MA 02110-1301, USA. */
21 /* As a special exception, if you link this library with other files, some
22 of which are compiled with GCC, to produce an executable, this library
23 does not by itself cause the resulting executable to be covered by the
24 GNU General Public License. This exception does not however invalidate
25 any other reasons why the executable file might be covered by the GNU
26 General Public License. */
28 /* This is the default PTHREADS implementation of the public OpenMP
31 Because OpenMP uses different entry points for normal and recursive
32 locks, and pthreads uses only one entry point, a system may be able
33 to do better and streamline the locking as well as reduce the size
34 of the types exported. */
36 /* We need Unix98 extensions to get recursive locks. */
37 #define _XOPEN_SOURCE 500
43 omp_init_lock (omp_lock_t
*lock
)
45 pthread_mutex_init (lock
, NULL
);
49 omp_destroy_lock (omp_lock_t
*lock
)
51 pthread_mutex_destroy (lock
);
55 omp_set_lock (omp_lock_t
*lock
)
57 pthread_mutex_lock (lock
);
61 omp_unset_lock (omp_lock_t
*lock
)
63 pthread_mutex_unlock (lock
);
67 omp_test_lock (omp_lock_t
*lock
)
69 return pthread_mutex_trylock (lock
) == 0;
73 omp_init_nest_lock (omp_nest_lock_t
*lock
)
75 pthread_mutexattr_t attr
;
77 pthread_mutexattr_init (&attr
);
78 pthread_mutexattr_settype (&attr
, PTHREAD_MUTEX_RECURSIVE
);
79 pthread_mutex_init (&lock
->lock
, &attr
);
81 pthread_mutexattr_destroy (&attr
);
85 omp_destroy_nest_lock (omp_nest_lock_t
*lock
)
87 pthread_mutex_destroy (&lock
->lock
);
91 omp_set_nest_lock (omp_nest_lock_t
*lock
)
93 pthread_mutex_lock (&lock
->lock
);
98 omp_unset_nest_lock (omp_nest_lock_t
*lock
)
101 pthread_mutex_unlock (&lock
->lock
);
105 omp_test_nest_lock (omp_nest_lock_t
*lock
)
107 if (pthread_mutex_trylock (&lock
->lock
) == 0)
108 return ++lock
->count
;
112 ialias (omp_init_lock
)
113 ialias (omp_init_nest_lock
)
114 ialias (omp_destroy_lock
)
115 ialias (omp_destroy_nest_lock
)
116 ialias (omp_set_lock
)
117 ialias (omp_set_nest_lock
)
118 ialias (omp_unset_lock
)
119 ialias (omp_unset_nest_lock
)
120 ialias (omp_test_lock
)
121 ialias (omp_test_nest_lock
)