Add a new library, libcaps, which is intended to encompass DragonFly-specific
[dragonfly.git] / lib / libcaps / globaldata.c
1 /*
2  * GLOBALDATA.C
3  *
4  * Copyright (c) 2003 Matthew Dillon <dillon@backplane.com>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $DragonFly: src/lib/libcaps/globaldata.c,v 1.1 2003/11/24 21:15:58 dillon Exp $
29  */
30
31 #include "defs.h"
32
33 struct globaldata gdary[1];
34 struct globaldata *mycpu = &gdary[0];
35 int smp_active;
36 int ncpus = 1;
37 char *panicstr;
38
39 struct globaldata *
40 globaldata_find(int cpu)
41 {
42     KKASSERT(cpu >= 0 && cpu < ncpus);
43     return(&gdary[0]);
44 }
45
46 void *
47 libcaps_alloc_stack(int stksize)
48 {
49     return(malloc(stksize));
50 }
51
52 void
53 libcaps_free_stack(void *stk, int stksize)
54 {
55     free(stk);
56 }
57
58 void
59 splz(void)
60 {
61 }
62
63 int
64 need_resched()
65 {
66     return(0);
67 }
68
69 void
70 pmap_init_thread(struct thread *td)
71 {
72 }
73
74 void
75 cpu_thread_exit(void)
76 {
77     exit(1);
78 }
79
80 void
81 cpu_set_thread_handler(struct thread *td, void (*exitfunc)(void),
82                 void (*func)(void *), void *ar)
83 {
84     assert(0);
85 }
86
87 void
88 panic(const char *ctl, ...)
89 {
90     va_list va;
91
92     va_start(va, ctl);
93     vfprintf(stderr, ctl, va);
94     va_end(va);
95     exit(1);
96 }