Convert weak reference to strong reference so that static library
[dragonfly.git] / lib / libthread_xu / thread / thr_mutexattr.c
1 /*
2  * Copyright (c) 1996 Jeffrey Hsu <hsu@freebsd.org>.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by John Birrell.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * $DragonFly: src/lib/libthread_xu/thread/thr_mutexattr.c,v 1.3 2006/04/05 00:24:36 davidxu Exp $
33  */
34
35 /*
36  * Copyright (c) 1997 John Birrell <jb@cimlogic.com.au>.
37  * All rights reserved.
38  *
39  * Redistribution and use in source and binary forms, with or without
40  * modification, are permitted provided that the following conditions
41  * are met:
42  * 1. Redistributions of source code must retain the above copyright
43  *    notice, this list of conditions and the following disclaimer.
44  * 2. Redistributions in binary form must reproduce the above copyright
45  *    notice, this list of conditions and the following disclaimer in the
46  *    documentation and/or other materials provided with the distribution.
47  * 3. All advertising materials mentioning features or use of this software
48  *    must display the following acknowledgement:
49  *      This product includes software developed by John Birrell.
50  * 4. Neither the name of the author nor the names of any co-contributors
51  *    may be used to endorse or promote products derived from this software
52  *    without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64  * SUCH DAMAGE.
65  *
66  * $FreeBSD$
67  */
68
69 #include <string.h>
70 #include <stdlib.h>
71 #include <errno.h>
72 #include <pthread.h>
73 #include "thr_private.h"
74
75 int
76 _pthread_mutexattr_init(pthread_mutexattr_t *attr)
77 {
78         int ret;
79         pthread_mutexattr_t pattr;
80
81         if ((pattr = (pthread_mutexattr_t)
82             malloc(sizeof(struct pthread_mutex_attr))) == NULL) {
83                 ret = ENOMEM;
84         } else {
85                 memcpy(pattr, &_pthread_mutexattr_default,
86                     sizeof(struct pthread_mutex_attr));
87                 *attr = pattr;
88                 ret = 0;
89         }
90         return (ret);
91 }
92
93 int
94 _pthread_mutexattr_setkind_np(pthread_mutexattr_t *attr, int kind)
95 {
96         int     ret;
97         if (attr == NULL || *attr == NULL) {
98                 errno = EINVAL;
99                 ret = -1;
100         } else {
101                 (*attr)->m_type = kind;
102                 ret = 0;
103         }
104         return(ret);
105 }
106
107 int
108 _pthread_mutexattr_getkind_np(pthread_mutexattr_t attr)
109 {
110         int     ret;
111         if (attr == NULL) {
112                 errno = EINVAL;
113                 ret = -1;
114         } else {
115                 ret = attr->m_type;
116         }
117         return(ret);
118 }
119
120 int
121 _pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type)
122 {
123         int     ret;
124         if (attr == NULL || *attr == NULL || type >= MUTEX_TYPE_MAX) {
125                 errno = EINVAL;
126                 ret = -1;
127         } else {
128                 (*attr)->m_type = type;
129                 ret = 0;
130         }
131         return(ret);
132 }
133
134 int
135 _pthread_mutexattr_gettype(pthread_mutexattr_t *attr, int *type)
136 {
137         int     ret;
138
139         if (attr == NULL || *attr == NULL || (*attr)->m_type >=
140             MUTEX_TYPE_MAX) {
141                 ret = EINVAL;
142         } else {
143                 *type = (*attr)->m_type;
144                 ret = 0;
145         }
146         return ret;
147 }
148
149 int
150 _pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
151 {
152         int     ret;
153         if (attr == NULL || *attr == NULL) {
154                 ret = EINVAL;
155         } else {
156                 free(*attr);
157                 *attr = NULL;
158                 ret = 0;
159         }
160         return(ret);
161 }
162
163 int
164 _pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr,
165         int *pshared)
166 {
167
168         if (attr == NULL || *attr == NULL)
169                 return (EINVAL);
170
171         *pshared = PTHREAD_PROCESS_PRIVATE;
172         return (0);
173 }
174
175 int
176 _pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int pshared)
177 {
178
179         if (attr == NULL || *attr == NULL)
180                 return (EINVAL);
181
182         /* Only PTHREAD_PROCESS_PRIVATE is supported. */
183         if (pshared != PTHREAD_PROCESS_PRIVATE)
184                 return (EINVAL);
185
186         return (0);
187 }
188
189 __strong_reference(_pthread_mutexattr_init, pthread_mutexattr_init);
190 __strong_reference(_pthread_mutexattr_setkind_np, pthread_mutexattr_setkind_np);
191 __strong_reference(_pthread_mutexattr_getkind_np, pthread_mutexattr_getkind_np);
192 __strong_reference(_pthread_mutexattr_gettype, pthread_mutexattr_gettype);
193 __strong_reference(_pthread_mutexattr_settype, pthread_mutexattr_settype);
194 __strong_reference(_pthread_mutexattr_destroy, pthread_mutexattr_destroy);
195