The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/amd64/amd64/critical.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2001 Matthew Dillon.  This code is distributed under
    3  * the BSD copyright, /usr/src/COPYRIGHT.
    4  *
    5  * $FreeBSD: releng/5.1/sys/amd64/amd64/critical.c 114349 2003-05-01 01:05:25Z peter $
    6  */
    7 
    8 #include <sys/param.h>
    9 #include <sys/systm.h>
   10 #include <sys/signalvar.h>
   11 #include <sys/kernel.h>
   12 #include <sys/lock.h>
   13 #include <sys/mutex.h>
   14 #include <sys/pcpu.h>
   15 #include <sys/proc.h>
   16 #include <sys/sysctl.h>
   17 #include <sys/ucontext.h>
   18 #include <machine/clock.h>
   19 #include <machine/critical.h>
   20 
   21 /*
   22  * cpu_critical_fork_exit() - cleanup after fork
   23  */
   24 void
   25 cpu_critical_fork_exit(void)
   26 {
   27         struct thread *td;
   28 
   29         td = curthread;
   30         td->td_critnest = 1;
   31         td->td_md.md_savecrit = read_rflags() | PSL_I;
   32 }
   33 
   34 /*
   35  * cpu_thread_link() - thread linkup, initialize machine-dependant fields
   36  */
   37 void
   38 cpu_thread_link(struct thread *td)
   39 {
   40 
   41         td->td_md.md_savecrit = 0;
   42 }

Cache object: b2fc5eec939eb4fd240b5f3e4d4a30b4


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.