⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defs.h

📁 The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a s
💻 H
字号:
/* * Misc. kernel definitions * Copyright (c) 2001,2004 David H. Hovemeyer <daveho@cs.umd.edu> * $Revision: 1.10 $ *  * This is free software.  You are permitted to use, * redistribute, and modify it as specified in the file "COPYING". */#ifndef GEEKOS_DEFS_H#define GEEKOS_DEFS_H/* * Kernel code and data segment selectors. * Keep these up to date with defs.asm. */#define KERNEL_CS  (1<<3)#define KERNEL_DS  (2<<3)/* * Pages for initial kernel thread context object and stack. * Keep these up to date with defs.asm. */#define KERN_THREAD_OBJ (1024 * 1024)#define KERN_STACK (KERN_THREAD_OBJ + 4096)/* * Address where kernel is loaded */#define KERNEL_START_ADDR 0x10000/* * Kernel and user privilege levels */#define KERNEL_PRIVILEGE 0#define USER_PRIVILEGE 3/* * Software interrupt for syscalls */#define SYSCALL_INT 0x90/* * The windows versions of gcc use slightly different * names for the bss begin and end symbols than the Linux version. */#if defined(GNU_WIN32)#  define BSS_START _bss_start__#  define BSS_END _bss_end__#else#  define BSS_START __bss_start#  define BSS_END end#endif/* * x86 has 4096 byte pages */#define PAGE_POWER 12#define PAGE_SIZE (1<<PAGE_POWER)#define PAGE_MASK (~(0xffffffff << PAGE_POWER))#endif  /* GEEKOS_DEFS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -