2 * Copyright (c) 2001 Daniel Eischen <deischen@FreeBSD.org>.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
14 * THIS SOFTWARE IS PROVIDED BY DANIEL EISCHEN AND CONTRIBUTORS ``AS IS''
15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: /repoman/r/ncvs/src/lib/libc/gen/_pthread_stubs.c,v 1.1 2001/01/24 12:59:20 deischen Exp $
27 * $DragonFly: src/lib/libc/gen/_pthread_stubs.c,v 1.4 2005/05/09 14:43:40 davidxu Exp $
32 void *_pthread_getspecific_stub(pthread_key_t
);
33 int _pthread_key_create_stub(pthread_key_t
*, void (*)(void *));
34 int _pthread_key_delete_stub(pthread_key_t
);
35 int _pthread_mutex_destroy_stub(pthread_mutex_t
*);
36 int _pthread_mutex_init_stub(pthread_mutex_t
*,
37 const pthread_mutexattr_t
*);
38 int _pthread_mutex_lock_stub(pthread_mutex_t
*);
39 int _pthread_mutex_trylock_stub(pthread_mutex_t
*);
40 int _pthread_mutex_unlock_stub(pthread_mutex_t
*);
41 int _pthread_mutexattr_init_stub(pthread_mutexattr_t
*);
42 int _pthread_mutexattr_destroy_stub(pthread_mutexattr_t
*);
43 int _pthread_mutexattr_settype_stub(pthread_mutexattr_t
*, int);
44 int _pthread_once_stub(pthread_once_t
*, void (*)(void));
45 int _pthread_setspecific_stub(pthread_key_t
, const void *);
47 /* define a null pthread structure just to satisfy _pthread_self */
51 static struct pthread main_thread
;
54 * Weak symbols: All libc internal usage of these functions should
55 * use the weak symbol versions (_pthread_XXX). If libpthread is
56 * linked, it will override these functions with (non-weak) routines.
57 * The _pthread_XXX functions are provided solely for internal libc
58 * usage to avoid unwanted cancellation points and to differentiate
59 * between application locks and libc locks (threads holding the
60 * latter can't be allowed to exit/terminate).
62 __weak_reference(_pthread_getspecific_stub
,_pthread_getspecific
);
63 __weak_reference(_pthread_key_create_stub
,_pthread_key_create
);
64 __weak_reference(_pthread_key_delete_stub
,_pthread_key_delete
);
65 __weak_reference(_pthread_mutex_destroy_stub
,_pthread_mutex_destroy
);
66 __weak_reference(_pthread_mutex_init_stub
,_pthread_mutex_init
);
67 __weak_reference(_pthread_mutex_lock_stub
,_pthread_mutex_lock
);
68 __weak_reference(_pthread_mutex_trylock_stub
,_pthread_mutex_trylock
);
69 __weak_reference(_pthread_mutex_unlock_stub
,_pthread_mutex_unlock
);
70 __weak_reference(_pthread_mutexattr_init_stub
,_pthread_mutexattr_init
);
71 __weak_reference(_pthread_mutexattr_destroy_stub
,_pthread_mutexattr_destroy
);
72 __weak_reference(_pthread_mutexattr_settype_stub
,_pthread_mutexattr_settype
);
73 __weak_reference(_pthread_once_stub
,_pthread_once
);
74 __weak_reference(_pthread_setspecific_stub
,_pthread_setspecific
);
75 __weak_reference(_pthread_self_stub
,_pthread_self
);
78 _pthread_getspecific_stub(pthread_key_t key __unused
)
84 _pthread_key_create_stub(pthread_key_t
*key __unused
,
85 void (*destructor
) (void *) __unused
)
91 _pthread_key_delete_stub(pthread_key_t key __unused
)
97 _pthread_mutex_destroy_stub(pthread_mutex_t
*mattr __unused
)
103 _pthread_mutex_init_stub(pthread_mutex_t
*mutex __unused
,
104 const pthread_mutexattr_t
*mattr __unused
)
110 _pthread_mutex_lock_stub(pthread_mutex_t
*mutex __unused
)
116 _pthread_mutex_trylock_stub(pthread_mutex_t
*mutex __unused
)
122 _pthread_mutex_unlock_stub(pthread_mutex_t
*mutex __unused
)
128 _pthread_mutexattr_init_stub(pthread_mutexattr_t
*mattr __unused
)
134 _pthread_mutexattr_destroy_stub(pthread_mutexattr_t
*mattr __unused
)
140 _pthread_mutexattr_settype_stub(pthread_mutexattr_t
*mattr __unused
,
147 _pthread_once_stub(pthread_once_t
*once_control __unused
,
148 void (*init_routine
) (void) __unused
)
154 _pthread_self_stub(void)
156 return (&main_thread
);
159 _pthread_setspecific_stub(pthread_key_t key __unused
,
160 const void *value __unused
)