Home | History | Annotate | Line # | Download | only in kern
kern_kthread.c revision 1.16.6.3
      1  1.16.6.3       ad /*	$NetBSD: kern_kthread.c,v 1.16.6.3 2007/04/10 18:34:46 ad Exp $	*/
      2       1.1  thorpej 
      3       1.1  thorpej /*-
      4  1.16.6.1       ad  * Copyright (c) 1998, 1999, 2007 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.16.6.1       ad  * NASA Ames Research Center, and by Andrew Doran.
     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.12    lukem 
     40      1.12    lukem #include <sys/cdefs.h>
     41  1.16.6.3       ad __KERNEL_RCSID(0, "$NetBSD: kern_kthread.c,v 1.16.6.3 2007/04/10 18:34:46 ad Exp $");
     42       1.1  thorpej 
     43       1.1  thorpej #include <sys/param.h>
     44       1.1  thorpej #include <sys/systm.h>
     45       1.1  thorpej #include <sys/kernel.h>
     46       1.1  thorpej #include <sys/kthread.h>
     47       1.1  thorpej #include <sys/proc.h>
     48       1.1  thorpej 
     49  1.16.6.1       ad #include <uvm/uvm_extern.h>
     50  1.16.6.1       ad 
     51       1.1  thorpej /*
     52       1.1  thorpej  * note that stdarg.h and the ansi style va_start macro is used for both
     53       1.1  thorpej  * ansi and traditional c complers.
     54       1.1  thorpej  * XXX: this requires that stdarg.h define: va_alist and va_dcl
     55       1.1  thorpej  */
     56       1.1  thorpej #include <machine/stdarg.h>
     57       1.1  thorpej 
     58       1.1  thorpej /*
     59       1.1  thorpej  * Fork a kernel thread.  Any process can request this to be done.
     60       1.1  thorpej  */
     61       1.1  thorpej int
     62  1.16.6.2       ad kthread_create(pri_t pri, bool mpsafe, void (*func)(void *), void *arg,
     63  1.16.6.3       ad 	       lwp_t **lp, const char *fmt, ...)
     64       1.1  thorpej {
     65  1.16.6.3       ad 	lwp_t *l;
     66  1.16.6.1       ad 	vaddr_t uaddr;
     67  1.16.6.1       ad 	bool inmem;
     68       1.1  thorpej 	int error;
     69       1.1  thorpej 	va_list ap;
     70       1.1  thorpej 
     71  1.16.6.1       ad 	inmem = uvm_uarea_alloc(&uaddr);
     72  1.16.6.1       ad 	if (uaddr == 0)
     73  1.16.6.1       ad 		return ENOMEM;
     74  1.16.6.2       ad 	error = newlwp(&lwp0, &proc0, uaddr, inmem, LWP_DETACHED, NULL, 0,
     75  1.16.6.2       ad 	    func, arg, &l);
     76  1.16.6.1       ad 	if (error) {
     77  1.16.6.3       ad 		uvm_uarea_free(uaddr);
     78  1.16.6.1       ad 		return error;
     79  1.16.6.1       ad 	}
     80  1.16.6.1       ad 
     81  1.16.6.1       ad 	/* Set parameters. */
     82  1.16.6.1       ad 	if (pri == PRI_NONE) {
     83  1.16.6.1       ad 		/* Minimum kernel priority level. */
     84  1.16.6.1       ad 		pri = PUSER - 1;
     85  1.16.6.1       ad 	}
     86  1.16.6.1       ad 	if (mpsafe)
     87  1.16.6.1       ad 		l->l_pflag |= LP_MPSAFE;
     88  1.16.6.1       ad 	if (fmt != NULL) {
     89  1.16.6.1       ad 		va_start(ap, fmt);
     90  1.16.6.1       ad 		vsnprintf(l->l_name, MAXCOMLEN, fmt, ap);
     91  1.16.6.1       ad 		va_end(ap);
     92  1.16.6.1       ad 	}
     93  1.16.6.1       ad 
     94  1.16.6.1       ad 	/* Set the new LWP running. */
     95  1.16.6.1       ad 	mutex_enter(&proc0.p_smutex);
     96  1.16.6.1       ad 	lwp_lock(l);
     97  1.16.6.1       ad 	l->l_usrpri = pri;
     98  1.16.6.1       ad 	l->l_priority = pri;
     99  1.16.6.1       ad 	l->l_stat = LSRUN;
    100  1.16.6.1       ad 	proc0.p_nrlwps++;
    101  1.16.6.1       ad 	setrunqueue(l);
    102  1.16.6.1       ad 	lwp_unlock(l);
    103  1.16.6.1       ad 	mutex_exit(&proc0.p_smutex);
    104       1.1  thorpej 
    105       1.1  thorpej 	/* All done! */
    106  1.16.6.1       ad 	if (lp != NULL)
    107  1.16.6.1       ad 		*lp = l;
    108  1.16.6.1       ad 
    109       1.1  thorpej 	return (0);
    110       1.1  thorpej }
    111       1.1  thorpej 
    112       1.1  thorpej /*
    113       1.1  thorpej  * Cause a kernel thread to exit.  Assumes the exiting thread is the
    114       1.1  thorpej  * current context.
    115       1.1  thorpej  */
    116       1.1  thorpej void
    117      1.11  thorpej kthread_exit(int ecode)
    118       1.1  thorpej {
    119  1.16.6.3       ad 	lwp_t *l = curlwp;
    120       1.1  thorpej 
    121  1.16.6.1       ad 	/* We can't do much with the exit code, so just report it. */
    122       1.1  thorpej 	if (ecode != 0)
    123  1.16.6.1       ad 		printf("WARNING: kthread `%s' (%d) exits with status %d\n",
    124  1.16.6.1       ad 		    l->l_name, l->l_lid, ecode);
    125       1.1  thorpej 
    126  1.16.6.2       ad 	/* And exit.. */
    127  1.16.6.1       ad 	lwp_exit(l);
    128       1.1  thorpej 
    129       1.1  thorpej 	/*
    130       1.1  thorpej 	 * XXX Fool the compiler.  Making exit1() __noreturn__ is a can
    131       1.1  thorpej 	 * XXX of worms right now.
    132       1.1  thorpej 	 */
    133  1.16.6.2       ad 	for (;;)
    134  1.16.6.2       ad 		;
    135       1.1  thorpej }
    136