* ctype/ctype.h (__ctype_b, __ctype_toupper, __ctype_tolower):
[platform/upstream/glibc.git] / linuxthreads / weaks.c
1 /* The weak pthread functions for Linux.
2    Copyright (C) 1996,97,98,99,2000,01,02 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public License as
7    published by the Free Software Foundation; either version 2.1 of the
8    License, or (at your option) any later version.
9
10    The GNU C Library 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 GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #include <limits.h>
21 #include <stdlib.h>
22 #include <shlib-compat.h>
23 #include <bp-sym.h>
24
25 extern int __pthread_return_0 (void);
26 extern int __pthread_return_1 (void);
27 extern void __pthread_return_void (void);
28 extern void weak_function pthread_exit (void *__retval)
29      __attribute__ ((noreturn));
30
31 /* Those are pthread functions which return 0 if successful. */
32 weak_alias (__pthread_return_0, BP_SYM (__libc_pthread_attr_init_2_1))
33 versioned_symbol (libpthread, BP_SYM (__libc_pthread_attr_init_2_1),
34                   BP_SYM (pthread_attr_init), GLIBC_2_1);
35 #if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)
36 weak_alias (__pthread_return_0, BP_SYM (__libc_pthread_attr_init_2_0))
37 compat_symbol (libpthread, BP_SYM (__libc_pthread_attr_init_2_0),
38                BP_SYM (pthread_attr_init), GLIBC_2_0);
39 #endif
40 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_destroy))
41 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setdetachstate))
42 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getdetachstate))
43 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setschedparam))
44 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getschedparam))
45 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setschedpolicy))
46 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getschedpolicy))
47 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setinheritsched))
48 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getinheritsched))
49 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setscope))
50 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getscope))
51 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setstackaddr))
52 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getstackaddr))
53 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_setstacksize))
54 weak_alias (__pthread_return_0, BP_SYM (pthread_attr_getstacksize))
55 weak_alias (__pthread_return_0, BP_SYM (pthread_mutex_init))
56 weak_alias (__pthread_return_0, BP_SYM (pthread_mutex_destroy))
57 weak_alias (__pthread_return_0, BP_SYM (pthread_mutex_lock))
58 weak_alias (__pthread_return_0, BP_SYM (pthread_mutex_trylock))
59 weak_alias (__pthread_return_0, BP_SYM (pthread_mutex_unlock))
60 weak_alias (__pthread_return_0, BP_SYM (pthread_mutexattr_init))
61 weak_alias (__pthread_return_0, BP_SYM (pthread_mutexattr_destroy))
62 weak_alias (__pthread_return_0, BP_SYM (pthread_mutexattr_settype))
63 weak_alias (__pthread_return_0, BP_SYM (pthread_mutexattr_gettype))
64 weak_alias (__pthread_return_0, BP_SYM (pthread_condattr_init))
65 weak_alias (__pthread_return_0, BP_SYM (pthread_condattr_destroy))
66 weak_alias (__pthread_return_0, BP_SYM (pthread_setschedparam))
67 weak_alias (__pthread_return_0, BP_SYM (pthread_getschedparam))
68 weak_alias (__pthread_return_0, BP_SYM (pthread_getcancelstate))
69 weak_alias (__pthread_return_0, BP_SYM (pthread_setcancelstate))
70 weak_alias (__pthread_return_0, BP_SYM (pthread_setcanceltype))
71 weak_alias (__pthread_return_0, pthread_setconcurrency)
72 weak_alias (__pthread_return_0, pthread_getconcurrency)
73 weak_alias (__pthread_return_0, pthread_self)
74 weak_alias (__pthread_return_0, BP_SYM (pthread_cond_init))
75 weak_alias (__pthread_return_0, BP_SYM (pthread_cond_destroy))
76 weak_alias (__pthread_return_0, BP_SYM (pthread_cond_wait))
77 weak_alias (__pthread_return_0, BP_SYM (pthread_cond_timedwait))
78 weak_alias (__pthread_return_0, BP_SYM (pthread_cond_signal))
79 weak_alias (__pthread_return_0, BP_SYM (pthread_cond_broadcast))
80 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_init))
81 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_destroy))
82 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_rdlock))
83 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_wrlock))
84 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_tryrdlock))
85 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_trywrlock))
86 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlock_unlock))
87 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlockattr_init))
88 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlockattr_destroy))
89 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlockattr_setpshared))
90 weak_alias (__pthread_return_0, BP_SYM (pthread_rwlockattr_getpshared))
91
92
93 /* Those are pthread functions which return 1 if successful. */
94 weak_alias (__pthread_return_1, pthread_equal)
95
96 /* pthread_exit () is a special case. */
97 void
98 weak_function
99 pthread_exit (void *retval)
100 {
101   exit (EXIT_SUCCESS);
102 }
103
104 int
105 __pthread_return_0 (void)
106 {
107   return 0;
108 }
109
110 int
111 __pthread_return_1 (void)
112 {
113   return 1;
114 }
115
116 void
117 __pthread_return_void (void)
118 {
119 }