kern_kthread.c revision 1.1 1 1.1 thorpej /* $NetBSD: kern_kthread.c,v 1.1 1998/11/11 22:44:24 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 thorpej * NASA Ames Research Center.
10 1.1 thorpej *
11 1.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1 thorpej * modification, are permitted provided that the following conditions
13 1.1 thorpej * are met:
14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.1 thorpej * must display the following acknowledgement:
21 1.1 thorpej * This product includes software developed by the NetBSD
22 1.1 thorpej * Foundation, Inc. and its contributors.
23 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 thorpej * contributors may be used to endorse or promote products derived
25 1.1 thorpej * from this software without specific prior written permission.
26 1.1 thorpej *
27 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.1 thorpej */
39 1.1 thorpej
40 1.1 thorpej #include <sys/param.h>
41 1.1 thorpej #include <sys/systm.h>
42 1.1 thorpej #include <sys/kernel.h>
43 1.1 thorpej #include <sys/kthread.h>
44 1.1 thorpej #include <sys/proc.h>
45 1.1 thorpej #include <sys/wait.h>
46 1.1 thorpej
47 1.1 thorpej /*
48 1.1 thorpej * note that stdarg.h and the ansi style va_start macro is used for both
49 1.1 thorpej * ansi and traditional c complers.
50 1.1 thorpej * XXX: this requires that stdarg.h define: va_alist and va_dcl
51 1.1 thorpej */
52 1.1 thorpej #include <machine/stdarg.h>
53 1.1 thorpej
54 1.1 thorpej /*
55 1.1 thorpej * Fork a kernel thread. Any process can request this to be done.
56 1.1 thorpej * The VM space and limits, etc. will be shared with proc0.
57 1.1 thorpej */
58 1.1 thorpej int
59 1.1 thorpej #ifdef __STDC__
60 1.1 thorpej kthread_create(void (*func)(void *), void *arg,
61 1.1 thorpej struct proc **newpp, const char *fmt, ...)
62 1.1 thorpej #else
63 1.1 thorpej kthread_create(func, arg, newpp, fmt, va_alist)
64 1.1 thorpej void (*func) __P((void *));
65 1.1 thorpej void *arg;
66 1.1 thorpej struct proc **newpp;
67 1.1 thorpej const char *fmt;
68 1.1 thorpej va_dcl
69 1.1 thorpej #endif
70 1.1 thorpej {
71 1.1 thorpej struct proc *p2;
72 1.1 thorpej int error;
73 1.1 thorpej va_list ap;
74 1.1 thorpej
75 1.1 thorpej /* First, create the new process. */
76 1.1 thorpej error = fork1(&proc0, FORK_SHAREVM, NULL, &p2);
77 1.1 thorpej if (error)
78 1.1 thorpej return (error);
79 1.1 thorpej
80 1.1 thorpej /*
81 1.1 thorpej * Mark it as a system process and not a candidate for
82 1.1 thorpej * swapping. Set P_NOCLDWAIT so that children are reparented
83 1.1 thorpej * to init(8) when they exit. init(8) can easily wait them
84 1.1 thorpej * out for us.
85 1.1 thorpej */
86 1.1 thorpej p2->p_flag |= P_INMEM | P_SYSTEM | P_NOCLDWAIT; /* XXX */
87 1.1 thorpej
88 1.1 thorpej /* Name it as specified. */
89 1.1 thorpej va_start(ap, fmt);
90 1.1 thorpej vsprintf(p2->p_comm, fmt, ap);
91 1.1 thorpej va_end(ap);
92 1.1 thorpej
93 1.1 thorpej /* Arrange for it to start at the specified function. */
94 1.1 thorpej cpu_set_kpc(p2, func, arg);
95 1.1 thorpej
96 1.1 thorpej /* All done! */
97 1.1 thorpej if (newpp != NULL)
98 1.1 thorpej *newpp = p2;
99 1.1 thorpej return (0);
100 1.1 thorpej }
101 1.1 thorpej
102 1.1 thorpej /*
103 1.1 thorpej * Cause a kernel thread to exit. Assumes the exiting thread is the
104 1.1 thorpej * current context.
105 1.1 thorpej */
106 1.1 thorpej void
107 1.1 thorpej kthread_exit(ecode)
108 1.1 thorpej int ecode;
109 1.1 thorpej {
110 1.1 thorpej
111 1.1 thorpej /*
112 1.1 thorpej * XXX What do we do with the exit code? Should we even bother
113 1.1 thorpej * XXX with it? The parent (proc0) isn't going to do much with
114 1.1 thorpej * XXX it.
115 1.1 thorpej */
116 1.1 thorpej if (ecode != 0)
117 1.1 thorpej printf("WARNING: thread `%s' (%d) exits with status %d\n",
118 1.1 thorpej curproc->p_comm, curproc->p_pid, ecode);
119 1.1 thorpej
120 1.1 thorpej exit1(curproc, W_EXITCODE(ecode, 0));
121 1.1 thorpej
122 1.1 thorpej /*
123 1.1 thorpej * XXX Fool the compiler. Making exit1() __noreturn__ is a can
124 1.1 thorpej * XXX of worms right now.
125 1.1 thorpej */
126 1.1 thorpej for (;;);
127 1.1 thorpej }
128