带中文注释的Linux+0.11+源代码

源代码在线查看: kernel.h

软件大小: 289 K
上传用户: wei100543
关键词: Linux 0.11 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				* 'kernel.h' contains some often-used function prototypes etc				*/				/*				* 'kernel.h'定义了一些常用函数的原型等。				*/				// 验证给定地址开始的内存块是否超限。若超限则追加内存。( kernel/fork.c, 24 )。				void verify_area (void *addr, int count);				// 显示内核出错信息,然后进入死循环。( kernel/panic.c, 16 )。				volatile void panic (const char *str);				// 标准打印(显示)函数。( init/main.c, 151)。				int printf (const char *fmt, ...);				// 内核专用的打印信息函数,功能与printf()相同。( kernel/printk.c, 21 )。				int printk (const char *fmt, ...);				// 往tty 上写指定长度的字符串。( kernel/chr_drv/tty_io.c, 290 )。				int tty_write (unsigned ch, char *buf, int count);				// 通用内核内存分配函数。( lib/malloc.c, 117)。				void *malloc (unsigned int size);				// 释放指定对象占用的内存。( lib/malloc.c, 182)。				void free_s (void *obj, int size);								#define free(x) free_s((x), 0)								/*				* This is defined as a macro, but at some point this might become a				* real subroutine that sets a flag if it returns true (to do				* BSD-style accounting where the process is flagged if it uses root				* privs). The implication of this is that you should do normal				* permissions checks first, and check suser() last.				*/				/*				* 下面函数是以宏的形式定义的,但是在某方面来看它可以成为一个真正的子程序,				* 如果返回是true 时它将设置标志(如果使用root 用户权限的进程设置了标志,则用				* 于执行BSD 方式的计帐处理)。这意味着你应该首先执行常规权限检查,最后再				* 检测suser()。				*/				#define suser() (current->euid == 0)	// 检测是否是超级用户。							

相关资源