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