Implement interrupt thread preemption + minor cleanup.
[dragonfly.git] / sys / kern / kern_kthread.c
1 /*
2  * Copyright (c) 1999 Peter Wemm <peter@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * 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
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/kern/kern_kthread.c,v 1.5.2.3 2001/12/25 01:51:14 dillon Exp $
27  * $DragonFly: src/sys/kern/kern_kthread.c,v 1.7 2003/06/27 03:30:42 dillon Exp $
28  */
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/proc.h>
33 #include <sys/kthread.h>
34 #include <sys/ptrace.h>
35 #include <sys/resourcevar.h>
36 #include <sys/signalvar.h>
37 #include <sys/unistd.h>
38 #include <sys/wait.h>
39
40 #include <machine/stdarg.h>
41
42 /*
43  * Start a kernel process.  This is called after a fork() call in
44  * mi_startup() in the file kern/init_main.c.
45  *
46  * This function is used to start "internal" daemons and intended
47  * to be called from SYSINIT().
48  */
49 void
50 kproc_start(udata)
51         const void *udata;
52 {
53         const struct kproc_desc *kp = udata;
54         int error;
55
56         error = kthread_create((void (*)(void *))kp->func, NULL,
57                     kp->global_threadpp, kp->arg0);
58         if (error)
59                 panic("kproc_start: %s: error %d", kp->arg0, error);
60 }
61
62 /*
63  * Advise a kernel process to suspend (or resume) in its main loop.
64  * Participation is voluntary.
65  */
66 int
67 suspend_kproc(struct thread *td, int timo)
68 {
69         if (td->td_proc == NULL) {
70                 td->td_flags |= TDF_STOPREQ;    /* request thread pause */
71                 wakeup(td);
72                 while (td->td_flags & TDF_STOPREQ) {
73                         int error = tsleep(td, PPAUSE, "suspkp", timo);
74                         if (error == EWOULDBLOCK)
75                                 break;
76                 }
77                 td->td_flags &= ~TDF_STOPREQ;
78                 return(0);
79         } else {
80                 return(EINVAL); /* not a kernel thread */
81         }
82 }
83
84 void
85 kproc_suspend_loop(void)
86 {
87         struct thread *td = curthread;
88
89         if (td->td_flags & TDF_STOPREQ) {
90                 td->td_flags &= ~TDF_STOPREQ;
91                 while ((td->td_flags & TDF_WAKEREQ) == 0) {
92                         wakeup(td);
93                         tsleep(td, PPAUSE, "kpsusp", 0);
94                 }
95                 td->td_flags &= ~TDF_WAKEREQ;
96                 wakeup(td);
97         }
98 }
99