xref: /dflybsd-src/lib/libc/gen/_thread_init.c (revision 17ea22213f86a5c5966c1e6bf8e95f022ebb92b9)
1*17ea2221SMatthew Dillon /*
2*17ea2221SMatthew Dillon  * Copyright (c) 2001 Daniel Eischen <deischen@FreeBSD.org>
3*17ea2221SMatthew Dillon  * All rights reserved.
4*17ea2221SMatthew Dillon  *
5*17ea2221SMatthew Dillon  * Redistribution and use in source and binary forms, with or without
6*17ea2221SMatthew Dillon  * modification, are permitted provided that the following conditions
7*17ea2221SMatthew Dillon  * are met:
8*17ea2221SMatthew Dillon  * 1. Redistributions of source code must retain the above copyright
9*17ea2221SMatthew Dillon  *    notice, this list of conditions and the following disclaimer.
10*17ea2221SMatthew Dillon  * 2. Neither the name of the author nor the names of any co-contributors
11*17ea2221SMatthew Dillon  *    may be used to endorse or promote products derived from this software
12*17ea2221SMatthew Dillon  *    without specific prior written permission.
13*17ea2221SMatthew Dillon  *
14*17ea2221SMatthew Dillon  * THIS SOFTWARE IS PROVIDED BY DANIEL EISCHEN AND CONTRIBUTORS ``AS IS''
15*17ea2221SMatthew Dillon  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*17ea2221SMatthew Dillon  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*17ea2221SMatthew Dillon  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18*17ea2221SMatthew Dillon  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*17ea2221SMatthew Dillon  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*17ea2221SMatthew Dillon  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*17ea2221SMatthew Dillon  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*17ea2221SMatthew Dillon  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*17ea2221SMatthew Dillon  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*17ea2221SMatthew Dillon  * SUCH DAMAGE.
25*17ea2221SMatthew Dillon  *
26*17ea2221SMatthew Dillon  * $DragonFly: src/lib/libc/gen/_thread_init.c,v 1.1 2005/01/31 22:29:15 dillon Exp $
27*17ea2221SMatthew Dillon  */
28*17ea2221SMatthew Dillon 
29*17ea2221SMatthew Dillon #include <sys/cdefs.h>
30*17ea2221SMatthew Dillon 
31*17ea2221SMatthew Dillon #include <sys/types.h>
32*17ea2221SMatthew Dillon 
33*17ea2221SMatthew Dillon __weak_reference(_thread_init_stub, _thread_init);
34*17ea2221SMatthew Dillon __weak_reference(_thread_autoinit_dummy_decl_stub, _thread_autoinit_dummy_decl);
35*17ea2221SMatthew Dillon 
36*17ea2221SMatthew Dillon int	_thread_autoinit_dummy_decl_stub = 0;
37*17ea2221SMatthew Dillon 
38*17ea2221SMatthew Dillon void
39*17ea2221SMatthew Dillon _thread_init_stub(void)
40*17ea2221SMatthew Dillon {
41*17ea2221SMatthew Dillon 	/* This is just a stub; there is nothing to do. */
42*17ea2221SMatthew Dillon }
43