Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
xv6-public
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
问题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
银宸时代
OS Lab Group
奖励实验
xv6-public
提交
24cbd43c
提交
24cbd43c
12月 04, 2011
创建
作者:
Silas Boyd-Wickizer
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove #include "param.h", rely on gcc -include param.h.
上级
561179c4
隐藏空白字符变更
内嵌
并排
正在显示
32 个修改的文件
包含
0 行增加
和
32 行删除
+0
-32
bio.c
bio.c
+0
-1
bonsai.c
bonsai.c
+0
-1
condvar.c
condvar.c
+0
-1
console.c
console.c
+0
-1
dirbench.c
dirbench.c
+0
-1
exec.c
exec.c
+0
-1
file.c
file.c
+0
-1
fs.c
fs.c
+0
-1
hwvm.c
hwvm.c
+0
-1
ide.c
ide.c
+0
-1
kalloc.c
kalloc.c
+0
-1
kbd.c
kbd.c
+0
-1
lapic.c
lapic.c
+0
-1
main.c
main.c
+0
-1
memide.c
memide.c
+0
-1
mp.c
mp.c
+0
-1
mtrace.h
mtrace.h
+0
-1
namecache.c
namecache.c
+0
-1
ns.c
ns.c
+0
-1
pipe.c
pipe.c
+0
-1
proc.c
proc.c
+0
-1
prof.c
prof.c
+0
-1
rcu.c
rcu.c
+0
-1
sampler.c
sampler.c
+0
-1
sched.c
sched.c
+0
-1
spinlock.c
spinlock.c
+0
-1
syscall.c
syscall.c
+0
-1
sysfile.c
sysfile.c
+0
-1
sysproc.c
sysproc.c
+0
-1
trap.c
trap.c
+0
-1
umalloc.c
umalloc.c
+0
-1
vm.c
vm.c
+0
-1
没有找到文件。
bio.c
浏览文件 @
24cbd43c
...
...
@@ -23,7 +23,6 @@
#include "types.h"
#include "kernel.h"
#include "param.h"
#include "spinlock.h"
#include "condvar.h"
#include "buf.h"
...
...
bonsai.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "kernel.h"
#include "mmu.h"
#include "spinlock.h"
...
...
condvar.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "amd64.h"
#include "mmu.h"
#include "spinlock.h"
...
...
console.c
浏览文件 @
24cbd43c
...
...
@@ -2,7 +2,6 @@
// Input is from the keyboard or serial port.
// Output is written to the screen and serial port.
#include "param.h"
#include "types.h"
#include "cpu.h"
#include "kernel.h"
...
...
dirbench.c
浏览文件 @
24cbd43c
...
...
@@ -3,7 +3,6 @@
#include "user.h"
#include "mtrace.h"
#include "amd64.h"
#include "param.h"
#include "fcntl.h"
enum
{
nthread
=
2
};
...
...
exec.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "spinlock.h"
#include "condvar.h"
...
...
file.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "spinlock.h"
#include "condvar.h"
#include "kernel.h"
...
...
fs.c
浏览文件 @
24cbd43c
...
...
@@ -11,7 +11,6 @@
// are in sysfile.c.
#include "types.h"
#include "param.h"
#include "stat.h"
#include "mmu.h"
#include "kernel.h"
...
...
hwvm.c
浏览文件 @
24cbd43c
#include "param.h"
#include "types.h"
#include "amd64.h"
#include "mmu.h"
...
...
ide.c
浏览文件 @
24cbd43c
...
...
@@ -5,7 +5,6 @@
#include "types.h"
#include "defs.h"
#include "param.h"
#include "memlayout.h"
#include "mmu.h"
#include "spinlock.h"
...
...
kalloc.c
浏览文件 @
24cbd43c
...
...
@@ -3,7 +3,6 @@
// and pipe buffers. Allocates 4096-byte pages.
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "kernel.h"
#include "spinlock.h"
...
...
kbd.c
浏览文件 @
24cbd43c
...
...
@@ -2,7 +2,6 @@
#include "amd64.h"
#include "kernel.h"
#include "kbd.h"
#include "param.h"
int
kbdgetc
(
void
)
...
...
lapic.c
浏览文件 @
24cbd43c
...
...
@@ -2,7 +2,6 @@
// See Chapter 8 & Appendix C of Intel processor manual volume 3.
#include "types.h"
#include "param.h"
#include "amd64.h"
#include "kernel.h"
#include "traps.h"
...
...
main.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "multiboot.h"
#include "kernel.h"
#include "cpu.h"
...
...
memide.c
浏览文件 @
24cbd43c
...
...
@@ -2,7 +2,6 @@
// Useful for running kernel without scratch disk.
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "kernel.h"
#include "spinlock.h"
...
...
mp.c
浏览文件 @
24cbd43c
...
...
@@ -3,7 +3,6 @@
// http://developer.intel.com/design/pentium/datashts/24201606.pdf
#include "types.h"
#include "param.h"
#include "amd64.h"
#include "mp.h"
#include "kernel.h"
...
...
mtrace.h
浏览文件 @
24cbd43c
#include "param.h"
#if MTRACE
typedef
__signed
char
int8_t
;
typedef
unsigned
char
uint8_t
;
...
...
namecache.c
浏览文件 @
24cbd43c
...
...
@@ -9,7 +9,6 @@
#include "types.h"
#include "defs.h"
#include "param.h"
#include "stat.h"
#include "mmu.h"
#include "spinlock.h"
...
...
ns.c
浏览文件 @
24cbd43c
#include "types.h"
#include "kernel.h"
#include "spinlock.h"
#include "param.h"
#include "fs.h"
#include <stddef.h>
...
...
pipe.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "kernel.h"
#include "spinlock.h"
...
...
proc.c
浏览文件 @
24cbd43c
#include "types.h"
#include "kernel.h"
#include "param.h"
#include "mmu.h"
#include "amd64.h"
#include "spinlock.h"
...
...
prof.c
浏览文件 @
24cbd43c
#include "param.h"
#include "types.h"
#include "spinlock.h"
#include "condvar.h"
...
...
rcu.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "kernel.h"
#include "mmu.h"
#include "amd64.h"
...
...
sampler.c
浏览文件 @
24cbd43c
#include "param.h"
#include "types.h"
#include "spinlock.h"
#include "condvar.h"
...
...
sched.c
浏览文件 @
24cbd43c
#include "types.h"
#include "kernel.h"
#include "param.h"
#include "mmu.h"
#include "amd64.h"
#include "spinlock.h"
...
...
spinlock.c
浏览文件 @
24cbd43c
...
...
@@ -2,7 +2,6 @@
#include "types.h"
#include "kernel.h"
#include "param.h"
#include "amd64.h"
#include "cpu.h"
#include "bits.h"
...
...
syscall.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "kernel.h"
#include "spinlock.h"
...
...
sysfile.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "stat.h"
#include "mmu.h"
#include "kernel.h"
...
...
sysproc.c
浏览文件 @
24cbd43c
#include "types.h"
#include "amd64.h"
#include "kernel.h"
#include "param.h"
#include "mmu.h"
#include "spinlock.h"
#include "condvar.h"
...
...
trap.c
浏览文件 @
24cbd43c
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "kernel.h"
#include "amd64.h"
...
...
umalloc.c
浏览文件 @
24cbd43c
#include "types.h"
#include "stat.h"
#include "user.h"
#include "param.h"
// Memory allocator by Kernighan and Ritchie,
// The C programming Language, 2nd ed. Section 8.7.
...
...
vm.c
浏览文件 @
24cbd43c
#include "param.h"
#include "types.h"
#include "amd64.h"
#include "mmu.h"
...
...
编写
预览
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论