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/i386/include/apm_segments.h

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  * LP (Laptop Package)
    3  *
    4  * Copyright (C) 1994 by HOSOKAWA Tatsumi <hosokawa@mt.cs.keio.ac.jp>
    5  *
    6  * This software may be used, modified, copied, and distributed, in
    7  * both source and binary form provided that the above copyright and
    8  * these terms are retained. Under no circumstances is the author
    9  * responsible for the proper functioning of this software, nor does
   10  * the author assume any responsibility for damages incurred with its
   11  * use.
   12  *
   13  * Sep., 1994   Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
   14  *
   15  * $FreeBSD: releng/8.3/sys/i386/include/apm_segments.h 199583 2009-11-20 15:27:52Z jhb $
   16  */
   17 
   18 #ifndef _MACHINE_APM_SEGMENTS_H
   19 #define _MACHINE_APM_SEGMENTS_H
   20 
   21 #define SIZEOF_GDT              8
   22 #define BOOTSTRAP_GDT_NUM       32
   23 
   24 #define APM_INIT_CS_INDEX       (BOOTSTRAP_GDT_NUM - 4)
   25 #define APM_INIT_DS_INDEX       (BOOTSTRAP_GDT_NUM - 3)
   26 #define APM_INIT_CS16_INDEX     (BOOTSTRAP_GDT_NUM - 2)
   27 #define APM_INIT_DS16_INDEX     (BOOTSTRAP_GDT_NUM - 1)
   28 #define APM_INIT_CS_SEL         (APM_INIT_CS_INDEX << 3)
   29 #define APM_INIT_DS_SEL         (APM_INIT_DS_INDEX << 3)
   30 #define APM_INIT_CS16_SEL       (APM_INIT_CS16_INDEX << 3)
   31 #define APM_INIT_DS16_SEL       (APM_INIT_DS16_INDEX << 3)
   32 
   33 #define CS32_ATTRIB             0x409e
   34 #define DS32_ATTRIB             0x4092
   35 #define CS16_ATTRIB             0x009e
   36 #define DS16_ATTRIB             0x0092
   37 
   38 #endif

Cache object: 59822e67171b7fd2e47047582fda7c78


[ 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.