Update.
[glibc.git] / linuxthreads / attr.c
blobb5610030b56c46e400a705aa1e365311f88eee4e
1 /* Linuxthreads - a simple clone()-based implementation of Posix */
2 /* threads for Linux. */
3 /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */
4 /* */
5 /* This program is free software; you can redistribute it and/or */
6 /* modify it under the terms of the GNU Library General Public License */
7 /* as published by the Free Software Foundation; either version 2 */
8 /* of the License, or (at your option) any later version. */
9 /* */
10 /* This program is distributed in the hope that it will be useful, */
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
13 /* GNU Library General Public License for more details. */
15 /* Handling of thread attributes */
17 #include <errno.h>
18 #include <string.h>
19 #include <unistd.h>
20 #include <sys/param.h>
21 #include "pthread.h"
22 #include "internals.h"
24 int __pthread_attr_init_2_1(pthread_attr_t *attr)
26 size_t ps = __getpagesize ();
28 attr->detachstate = PTHREAD_CREATE_JOINABLE;
29 attr->schedpolicy = SCHED_OTHER;
30 attr->schedparam.sched_priority = 0;
31 attr->inheritsched = PTHREAD_EXPLICIT_SCHED;
32 attr->scope = PTHREAD_SCOPE_SYSTEM;
33 attr->guardsize = ps;
34 attr->stackaddr = NULL;
35 attr->stackaddr_set = 0;
36 attr->stacksize = STACK_SIZE - ps;
37 return 0;
39 #if defined HAVE_ELF && defined PIC && defined DO_VERSIONING
40 default_symbol_version (__pthread_attr_init_2_1, pthread_attr_init, GLIBC_2.1);
42 int __pthread_attr_init_2_0(pthread_attr_t *attr)
44 attr->detachstate = PTHREAD_CREATE_JOINABLE;
45 attr->schedpolicy = SCHED_OTHER;
46 attr->schedparam.sched_priority = 0;
47 attr->inheritsched = PTHREAD_EXPLICIT_SCHED;
48 attr->scope = PTHREAD_SCOPE_SYSTEM;
49 return 0;
51 symbol_version (__pthread_attr_init_2_0, pthread_attr_init, GLIBC_2.0);
52 #else
53 strong_alias (__pthread_attr_init_2_1, pthread_attr_init)
54 #endif
56 int pthread_attr_destroy(pthread_attr_t *attr)
58 return 0;
61 int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate)
63 if (detachstate < PTHREAD_CREATE_JOINABLE ||
64 detachstate > PTHREAD_CREATE_DETACHED)
65 return EINVAL;
66 attr->detachstate = detachstate;
67 return 0;
70 int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate)
72 *detachstate = attr->detachstate;
73 return 0;
76 int pthread_attr_setschedparam(pthread_attr_t *attr,
77 const struct sched_param *param)
79 int max_prio = __sched_get_priority_max(attr->schedpolicy);
80 int min_prio = __sched_get_priority_min(attr->schedpolicy);
82 if (param->sched_priority < min_prio || param->sched_priority > max_prio)
83 return EINVAL;
84 memcpy (&attr->schedparam, param, sizeof (struct sched_param));
85 return 0;
88 int pthread_attr_getschedparam(const pthread_attr_t *attr,
89 struct sched_param *param)
91 memcpy (param, &attr->schedparam, sizeof (struct sched_param));
92 return 0;
95 int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy)
97 if (policy != SCHED_OTHER && policy != SCHED_FIFO && policy != SCHED_RR)
98 return EINVAL;
99 if (policy != SCHED_OTHER && geteuid() != 0)
100 return ENOTSUP;
101 attr->schedpolicy = policy;
102 return 0;
105 int pthread_attr_getschedpolicy(const pthread_attr_t *attr, int *policy)
107 *policy = attr->schedpolicy;
108 return 0;
111 int pthread_attr_setinheritsched(pthread_attr_t *attr, int inherit)
113 if (inherit != PTHREAD_INHERIT_SCHED && inherit != PTHREAD_EXPLICIT_SCHED)
114 return EINVAL;
115 attr->inheritsched = inherit;
116 return 0;
119 int pthread_attr_getinheritsched(const pthread_attr_t *attr, int *inherit)
121 *inherit = attr->inheritsched;
122 return 0;
125 int pthread_attr_setscope(pthread_attr_t *attr, int scope)
127 switch (scope) {
128 case PTHREAD_SCOPE_SYSTEM:
129 attr->scope = scope;
130 return 0;
131 case PTHREAD_SCOPE_PROCESS:
132 return ENOTSUP;
133 default:
134 return EINVAL;
138 int pthread_attr_getscope(const pthread_attr_t *attr, int *scope)
140 *scope = attr->scope;
141 return 0;
144 int __pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize)
146 size_t ps = __getpagesize ();
148 /* First round up the guard size. */
149 guardsize = roundup (guardsize, ps);
151 /* The current implementation of LinuxThreads allocates 2MB stack space
152 for each thread. So the maximum guardsize is 2MB - pagesize. */
153 if (guardsize >= STACK_SIZE - ps)
154 return EINVAL;
156 attr->guardsize = guardsize;
158 return 0;
160 weak_alias (__pthread_attr_setguardsize, pthread_attr_setguardsize)
162 int __pthread_attr_getguardsize(const pthread_attr_t *attr, size_t *guardsize)
164 *guardsize = attr->guardsize;
165 return 0;
167 weak_alias (__pthread_attr_getguardsize, pthread_attr_getguardsize)
169 int __pthread_attr_setstackaddr(pthread_attr_t *attr, void *stackaddr)
171 attr->stackaddr = stackaddr;
172 attr->stackaddr_set = 1;
173 return 0;
175 weak_alias (__pthread_attr_setstackaddr, pthread_attr_setstackaddr)
177 int __pthread_attr_getstackaddr(const pthread_attr_t *attr, void **stackaddr)
179 /* XXX This function has a stupid definition. The standard specifies
180 no error value but what is if no stack address was set? We simply
181 return the value we have in the member. */
182 *stackaddr = attr->stackaddr;
183 return 0;
185 weak_alias (__pthread_attr_getstackaddr, pthread_attr_getstackaddr)
187 int __pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
189 /* We don't accept value smaller than PTHREAD_STACK_MIN. */
190 if (stacksize < PTHREAD_STACK_MIN)
191 return EINVAL;
193 attr->stacksize = stacksize;
194 return 0;
196 weak_alias (__pthread_attr_setstacksize, pthread_attr_setstacksize)
198 int __pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize)
200 *stacksize = attr->stacksize;
201 return 0;
203 weak_alias (__pthread_attr_getstacksize, pthread_attr_getstacksize)