Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
xv6-public
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
问题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
银宸时代
OS Lab Group
奖励实验
xv6-public
提交
143534ce
提交
143534ce
2月 25, 2012
创建
作者:
Silas Boyd-Wickizer
浏览文件
操作
浏览文件
下载
差异文件
merge
上级
c90f84ff
0b8c8259
隐藏空白字符变更
内嵌
并排
正在显示
16 个修改的文件
包含
176 行增加
和
30 行删除
+176
-30
Makefile
Makefile
+1
-1
amd64.h
include/amd64.h
+9
-0
bits.hh
include/bits.hh
+1
-0
kalloc.hh
include/kalloc.hh
+33
-10
kern_c.h
include/kern_c.h
+2
-1
kernel.hh
include/kernel.hh
+1
-0
mmu.h
include/mmu.h
+4
-1
hwvm.cc
kernel/hwvm.cc
+1
-0
kmalloc.cc
kernel/kmalloc.cc
+1
-1
main.cc
kernel/main.cc
+12
-0
proc.cc
kernel/proc.cc
+0
-2
syscall.cc
kernel/syscall.cc
+2
-1
trap.cc
kernel/trap.cc
+35
-5
trapasm.S
kernel/trapasm.S
+62
-4
usys.S
lib/usys.S
+10
-2
param.h
param.h
+2
-2
没有找到文件。
Makefile
浏览文件 @
143534ce
...
@@ -36,7 +36,7 @@ COMFLAGS = -static -fno-builtin -fno-strict-aliasing -O2 -Wall \
...
@@ -36,7 +36,7 @@ COMFLAGS = -static -fno-builtin -fno-strict-aliasing -O2 -Wall \
COMFLAGS
+=
$(
shell
$(CC)
-fno-stack-protector
-E
-x
c /dev/null
>
/dev/null 2>&1
&&
echo
-fno-stack-protector
)
COMFLAGS
+=
$(
shell
$(CC)
-fno-stack-protector
-E
-x
c /dev/null
>
/dev/null 2>&1
&&
echo
-fno-stack-protector
)
CFLAGS
:=
$(COMFLAGS)
-std
=
c99
$(CFLAGS)
CFLAGS
:=
$(COMFLAGS)
-std
=
c99
$(CFLAGS)
CXXFLAGS
:=
$(COMFLAGS)
-std
=
c++0x
-Wno-sign-compare
-fno-exceptions
-fno-rtti
-fcheck-new
$(CXXFLAGS)
CXXFLAGS
:=
$(COMFLAGS)
-std
=
c++0x
-Wno-sign-compare
-fno-exceptions
-fno-rtti
-fcheck-new
$(CXXFLAGS)
ASFLAGS
=
-Iinclude
-m64
-gdwarf-2
-MD
ASFLAGS
=
-Iinclude
-m64
-gdwarf-2
-MD
-DHW_
$(HW)
-include
param.h
LDFLAGS
=
-m
elf_x86_64
LDFLAGS
=
-m
elf_x86_64
all
:
all
:
...
...
include/amd64.h
浏览文件 @
143534ce
...
@@ -138,6 +138,14 @@ writegs(u16 v)
...
@@ -138,6 +138,14 @@ writegs(u16 v)
__asm
volatile
(
"movw %0, %%gs"
:
:
"r"
(
v
));
__asm
volatile
(
"movw %0, %%gs"
:
:
"r"
(
v
));
}
}
static
inline
u16
readgs
(
void
)
{
u16
v
;
__asm
volatile
(
"movw %%gs, %0"
:
"=r"
(
v
));
return
v
;
}
static
inline
u64
static
inline
u64
readmsr
(
u32
msr
)
readmsr
(
u32
msr
)
{
{
...
@@ -231,6 +239,7 @@ rcr2(void)
...
@@ -231,6 +239,7 @@ rcr2(void)
// Layout of the trap frame built on the stack by the
// Layout of the trap frame built on the stack by the
// hardware and by trapasm.S, and passed to trap().
// hardware and by trapasm.S, and passed to trap().
// Also used by sysentry (but sparsely populated).
struct
trapframe
{
struct
trapframe
{
u16
padding3
[
7
];
u16
padding3
[
7
];
u16
ds
;
u16
ds
;
...
...
include/bits.hh
浏览文件 @
143534ce
...
@@ -44,6 +44,7 @@
...
@@ -44,6 +44,7 @@
// FS/GS base registers
// FS/GS base registers
#define MSR_FS_BASE 0xc0000100
#define MSR_FS_BASE 0xc0000100
#define MSR_GS_BASE 0xc0000101
#define MSR_GS_BASE 0xc0000101
#define MSR_GS_KERNBASE 0xc0000102
// SYSCALL and SYSRET registers
// SYSCALL and SYSRET registers
#define MSR_STAR 0xc0000081
#define MSR_STAR 0xc0000081
...
...
include/kalloc.hh
浏览文件 @
143534ce
#include "atomic.hh"
#include "atomic.hh"
template
<
class
T
>
template
<
class
T
>
struct
vptr
{
struct
vptr64
{
u128
_a
;
typedef
u128
__inttype
;
T
ptr
()
const
{
return
(
T
)
(
_a
&
0xffffffffffffffffULL
);
}
typedef
T
__ptrtype
;
__inttype
_a
;
T
ptr
()
const
{
return
(
T
)
iptr
();
}
u64
iptr
()
const
{
return
_a
&
0xffffffffffffffffULL
;
}
u64
v
()
const
{
return
_a
>>
64
;
}
u64
v
()
const
{
return
_a
>>
64
;
}
vptr
(
T
p
,
u64
v
)
:
_a
((((
u128
)
v
)
<<
64
)
|
(
u64
)
p
)
{}
vptr
64
(
T
p
,
u64
v
)
:
_a
((((
u128
)
v
)
<<
64
)
|
(
u64
)
p
)
{}
vptr
(
u128
a
)
:
_a
(
a
)
{}
vptr
64
(
u128
a
)
:
_a
(
a
)
{}
};
};
template
<
class
T
>
template
<
class
T
>
struct
vptr48
{
typedef
u64
__inttype
;
typedef
T
__ptrtype
;
__inttype
_a
;
T
ptr
()
const
{
u64
i
=
iptr
();
if
(
i
&
(
1ULL
<<
47
))
i
+=
0xffffULL
<<
48
;
return
(
T
)
i
;
}
u64
iptr
()
const
{
return
_a
&
0xffffffffffffULL
;
}
u16
v
()
const
{
return
_a
>>
48
;
}
vptr48
(
T
p
,
u16
v
)
:
_a
((((
u64
)
v
)
<<
48
)
|
(((
u64
)
p
)
&
0xffffffffffffULL
))
{}
vptr48
(
u64
a
)
:
_a
(
a
)
{}
};
template
<
class
VPTR
>
class
versioned
{
class
versioned
{
private
:
private
:
std
::
atomic
<
u128
>
_a
;
std
::
atomic
<
typename
VPTR
::
__inttype
>
_a
;
public
:
public
:
vptr
<
T
>
load
()
{
return
vptr
<
T
>
(
_a
.
load
());
}
VPTR
load
()
{
return
VPTR
(
_a
.
load
());
}
bool
compare_exchange
(
const
vptr
<
T
>
&
expected
,
T
desired
)
{
bool
compare_exchange
(
const
VPTR
&
expected
,
typename
VPTR
::
__ptrtype
desired
)
{
vptr
<
T
>
n
(
desired
,
expected
.
v
());
VPTR
n
(
desired
,
expected
.
v
());
return
cmpxch
(
&
_a
,
expected
.
_a
,
n
.
_a
);
return
cmpxch
(
&
_a
,
expected
.
_a
,
n
.
_a
);
}
}
};
};
...
@@ -31,7 +54,7 @@ struct kmem {
...
@@ -31,7 +54,7 @@ struct kmem {
char
name
[
MAXNAME
];
char
name
[
MAXNAME
];
u64
size
;
u64
size
;
u64
ninit
;
u64
ninit
;
versioned
<
run
*
>
freelist
;
versioned
<
vptr48
<
run
*>
>
freelist
;
std
::
atomic
<
u64
>
nfree
;
std
::
atomic
<
u64
>
nfree
;
}
__mpalign__
;
}
__mpalign__
;
...
...
include/kern_c.h
浏览文件 @
143534ce
...
@@ -59,4 +59,5 @@ void threadhelper(void (*fn)(void *), void *arg);
...
@@ -59,4 +59,5 @@ void threadhelper(void (*fn)(void *), void *arg);
struct
trapframe
;
struct
trapframe
;
void
trap
(
struct
trapframe
*
tf
);
void
trap
(
struct
trapframe
*
tf
);
void
sysentry
(
void
);
void
sysentry_c
(
void
);
include/kernel.hh
浏览文件 @
143534ce
...
@@ -287,6 +287,7 @@ void initpg(void);
...
@@ -287,6 +287,7 @@ void initpg(void);
void
initmp
(
void
);
void
initmp
(
void
);
void
initlapic
(
void
);
void
initlapic
(
void
);
void
inittls
(
void
);
void
inittls
(
void
);
void
initnmi
(
void
);
void
inittrap
(
void
);
void
inittrap
(
void
);
void
initseg
(
void
);
void
initseg
(
void
);
void
initkalloc
(
u64
mbaddr
);
void
initkalloc
(
u64
mbaddr
);
...
...
include/mmu.h
浏览文件 @
143534ce
...
@@ -95,7 +95,7 @@ struct intdesc
...
@@ -95,7 +95,7 @@ struct intdesc
{
{
u16
rip0
;
u16
rip0
;
u16
cs
;
u16
cs
;
u8
reserved0
;
u8
ist
;
u8
bits
;
u8
bits
;
u16
rip1
;
u16
rip1
;
u32
rip2
;
u32
rip2
;
...
@@ -129,3 +129,6 @@ struct taskstate
...
@@ -129,3 +129,6 @@ struct taskstate
(u16) ((rip)&0xffff), (cs), 0, bits, (u16) (((rip)>>16)&0xffff), \
(u16) ((rip)&0xffff), (cs), 0, bits, (u16) (((rip)>>16)&0xffff), \
(u32) ((u64)(rip)>>32), 0, \
(u32) ((u64)(rip)>>32), 0, \
}
}
#define PROC_KSTACK_OFFSET 40
#define TRAPFRAME_SIZE 192
kernel/hwvm.cc
浏览文件 @
143534ce
...
@@ -180,6 +180,7 @@ inittls(void)
...
@@ -180,6 +180,7 @@ inittls(void)
c
=
&
cpus
[
cpunum
()];
c
=
&
cpus
[
cpunum
()];
writegs
(
KDSEG
);
writegs
(
KDSEG
);
writemsr
(
MSR_GS_BASE
,
(
u64
)
&
c
->
cpu
);
writemsr
(
MSR_GS_BASE
,
(
u64
)
&
c
->
cpu
);
writemsr
(
MSR_GS_KERNBASE
,
(
u64
)
&
c
->
cpu
);
c
->
cpu
=
c
;
c
->
cpu
=
c
;
c
->
proc
=
NULL
;
c
->
proc
=
NULL
;
c
->
kmem
=
&
kmems
[
cpunum
()];
c
->
kmem
=
&
kmems
[
cpunum
()];
...
...
kernel/kmalloc.cc
浏览文件 @
143534ce
...
@@ -19,7 +19,7 @@ struct header {
...
@@ -19,7 +19,7 @@ struct header {
};
};
struct
freelist
{
struct
freelist
{
versioned
<
header
*
>
buckets
[
KMMAX
+
1
];
versioned
<
vptr48
<
header
*>
>
buckets
[
KMMAX
+
1
];
char
name
[
MAXNAME
];
char
name
[
MAXNAME
];
};
};
...
...
kernel/main.cc
浏览文件 @
143534ce
...
@@ -6,6 +6,8 @@
...
@@ -6,6 +6,8 @@
#include "cpu.hh"
#include "cpu.hh"
#include "amd64.h"
#include "amd64.h"
#include "hwvm.hh"
#include "hwvm.hh"
#include "condvar.h"
#include "proc.hh"
extern
void
initidle
(
void
);
extern
void
initidle
(
void
);
extern
void
idleloop
(
void
);
extern
void
idleloop
(
void
);
...
@@ -20,6 +22,7 @@ mpboot(void)
...
@@ -20,6 +22,7 @@ mpboot(void)
initlapic
();
initlapic
();
initsamp
();
initsamp
();
initidle
();
initidle
();
initnmi
();
bstate
=
1
;
bstate
=
1
;
idleloop
();
idleloop
();
}
}
...
@@ -97,10 +100,19 @@ cmain(u64 mbmagic, u64 mbaddr)
...
@@ -97,10 +100,19 @@ cmain(u64 mbmagic, u64 mbaddr)
cprintf
(
"ncpu %d %lu MHz
\n
"
,
ncpu
,
cpuhz
/
1000000
);
cprintf
(
"ncpu %d %lu MHz
\n
"
,
ncpu
,
cpuhz
/
1000000
);
inituser
();
// first user process
inituser
();
// first user process
initnmi
();
bootothers
();
// start other processors
bootothers
();
// start other processors
kpml4
.
e
[
0
]
=
0
;
// don't need 1 GB identity mapping anymore
kpml4
.
e
[
0
]
=
0
;
// don't need 1 GB identity mapping anymore
lcr3
(
rcr3
());
lcr3
(
rcr3
());
if
(
PROC_KSTACK_OFFSET
!=
__offsetof
(
struct
proc
,
kstack
))
panic
(
"PROC_KSTACK_OFFSET mismatch: %d %ld
\n
"
,
PROC_KSTACK_OFFSET
,
__offsetof
(
struct
proc
,
kstack
));
if
(
TRAPFRAME_SIZE
!=
sizeof
(
trapframe
))
panic
(
"TRAPFRAME_SIZE mismatch: %d %ld
\n
"
,
TRAPFRAME_SIZE
,
sizeof
(
trapframe
));
idleloop
();
idleloop
();
panic
(
"Unreachable"
);
panic
(
"Unreachable"
);
}
}
kernel/proc.cc
浏览文件 @
143534ce
...
@@ -281,7 +281,6 @@ growproc(int n)
...
@@ -281,7 +281,6 @@ growproc(int n)
if
(
e
->
vma_start
<=
newstart
)
{
if
(
e
->
vma_start
<=
newstart
)
{
if
(
e
->
vma_end
>=
newstart
+
newn
)
{
if
(
e
->
vma_end
>=
newstart
+
newn
)
{
myproc
()
->
brk
+=
n
;
myproc
()
->
brk
+=
n
;
switchuvm
(
myproc
());
return
0
;
return
0
;
}
}
...
@@ -311,7 +310,6 @@ growproc(int n)
...
@@ -311,7 +310,6 @@ growproc(int n)
span
.
replace
(
prev
,
repl
);
span
.
replace
(
prev
,
repl
);
myproc
()
->
brk
+=
n
;
myproc
()
->
brk
+=
n
;
switchuvm
(
myproc
());
return
0
;
return
0
;
}
}
...
...
kernel/syscall.cc
浏览文件 @
143534ce
...
@@ -58,7 +58,8 @@ argint64(int n, u64 *ip)
...
@@ -58,7 +58,8 @@ argint64(int n, u64 *ip)
case
2
:
*
ip
=
myproc
()
->
tf
->
rdx
;
break
;
case
2
:
*
ip
=
myproc
()
->
tf
->
rdx
;
break
;
case
3
:
*
ip
=
myproc
()
->
tf
->
rcx
;
break
;
case
3
:
*
ip
=
myproc
()
->
tf
->
rcx
;
break
;
case
4
:
*
ip
=
myproc
()
->
tf
->
r8
;
break
;
case
4
:
*
ip
=
myproc
()
->
tf
->
r8
;
break
;
case
5
:
*
ip
=
myproc
()
->
tf
->
r9
;
break
;
// r9 is corrupted by sysentry
// case 5: *ip = myproc()->tf->r9; break;
default:
default:
cprintf
(
"argint64: bad arg %d
\n
"
,
n
);
cprintf
(
"argint64: bad arg %d
\n
"
,
n
);
return
-
1
;
return
-
1
;
...
...
kernel/trap.cc
浏览文件 @
143534ce
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include "proc.hh"
#include "proc.hh"
#include "kmtrace.hh"
#include "kmtrace.hh"
#include "bits.hh"
#include "bits.hh"
#include "kalloc.hh"
struct
intdesc
idt
[
256
]
__attribute__
((
aligned
(
16
)));
struct
intdesc
idt
[
256
]
__attribute__
((
aligned
(
16
)));
...
@@ -17,6 +18,29 @@ struct intdesc idt[256] __attribute__((aligned(16)));
...
@@ -17,6 +18,29 @@ struct intdesc idt[256] __attribute__((aligned(16)));
extern
u64
trapentry
[];
extern
u64
trapentry
[];
void
void
sysentry_c
()
{
writegs
(
KDSEG
);
writemsr
(
MSR_GS_BASE
,
(
u64
)
&
cpus
[
cpunum
()].
cpu
);
sti
();
if
(
myproc
()
->
killed
)
{
mtstart
(
trap
,
myproc
());
exit
();
}
trapframe
*
tf
=
(
trapframe
*
)
(
myproc
()
->
kstack
+
KSTACKSIZE
-
sizeof
(
*
tf
));
myproc
()
->
tf
=
tf
;
syscall
();
if
(
myproc
()
->
killed
)
{
mtstart
(
trap
,
myproc
());
exit
();
}
}
void
trap
(
struct
trapframe
*
tf
)
trap
(
struct
trapframe
*
tf
)
{
{
writegs
(
KDSEG
);
writegs
(
KDSEG
);
...
@@ -30,7 +54,6 @@ trap(struct trapframe *tf)
...
@@ -30,7 +54,6 @@ trap(struct trapframe *tf)
panic
(
"NMI"
);
panic
(
"NMI"
);
}
}
// XXX(sbw) sysenter/sysexit
if
(
tf
->
trapno
==
T_SYSCALL
){
if
(
tf
->
trapno
==
T_SYSCALL
){
sti
();
sti
();
if
(
myproc
()
->
killed
)
{
if
(
myproc
()
->
killed
)
{
...
@@ -183,9 +206,18 @@ inittrap(void)
...
@@ -183,9 +206,18 @@ inittrap(void)
}
}
void
void
initnmi
(
void
)
{
void
*
nmistackbase
=
ksalloc
(
slab_stack
);
mycpu
()
->
ts
.
ist
[
1
]
=
(
u64
)
nmistackbase
+
KSTACKSIZE
;
if
(
mycpu
()
->
id
==
0
)
idt
[
T_NMI
].
ist
=
1
;
}
void
initseg
(
void
)
initseg
(
void
)
{
{
extern
void
sysentry
(
void
);
volatile
struct
desctr
dtr
;
volatile
struct
desctr
dtr
;
struct
cpu
*
c
;
struct
cpu
*
c
;
...
@@ -201,7 +233,6 @@ initseg(void)
...
@@ -201,7 +233,6 @@ initseg(void)
dtr
.
base
=
(
u64
)
c
->
gdt
;
dtr
.
base
=
(
u64
)
c
->
gdt
;
lgdt
((
void
*
)
&
dtr
.
limit
);
lgdt
((
void
*
)
&
dtr
.
limit
);
#if 0
// When executing a syscall instruction the CPU sets the SS selector
// When executing a syscall instruction the CPU sets the SS selector
// to (star >> 32) + 8 and the CS selector to (star >> 32).
// to (star >> 32) + 8 and the CS selector to (star >> 32).
// When executing a sysret instruction the CPU sets the SS selector
// When executing a sysret instruction the CPU sets the SS selector
...
@@ -209,8 +240,7 @@ initseg(void)
...
@@ -209,8 +240,7 @@ initseg(void)
u64
star
=
((((
u64
)
UCSEG
|
0x3
)
-
16
)
<<
48
)
|
((
u64
)
KCSEG
<<
32
);
u64
star
=
((((
u64
)
UCSEG
|
0x3
)
-
16
)
<<
48
)
|
((
u64
)
KCSEG
<<
32
);
writemsr
(
MSR_STAR
,
star
);
writemsr
(
MSR_STAR
,
star
);
writemsr
(
MSR_LSTAR
,
(
u64
)
&
sysentry
);
writemsr
(
MSR_LSTAR
,
(
u64
)
&
sysentry
);
writemsr(MSR_SFMASK, FL_TF);
writemsr
(
MSR_SFMASK
,
FL_TF
|
FL_IF
);
#endif
}
}
// Pushcli/popcli are like cli/sti except that they are matched:
// Pushcli/popcli are like cli/sti except that they are matched:
...
...
kernel/trapasm.S
浏览文件 @
143534ce
...
@@ -18,13 +18,71 @@
...
@@ -18,13 +18,71 @@
#define TRAPCODE(x) _TRAP(x, EC)
#define TRAPCODE(x) _TRAP(x, EC)
.code64
.code64
#if 0
.globl sysentry
.globl sysentry
.align 8
.align 8
sysentry:
sysentry:
jmp sysentry
// can syscall/sysret be used safely in the presence of NMIs?
#endif
// we are executing with cpl=0 but without a valid stack.
// blow away %r9: syscalls can take at most 5 args
swapgs
movq %gs:8, %r9 // myproc()
swapgs
movq %ss:PROC_KSTACK_OFFSET(%r9), %r9
addq $(KSTACKSIZE-TRAPFRAME_SIZE), %r9
// syscall number: %rax
// function arguments: %rdi, %rsi, %rdx, %rcx, %r8, %r9 (killed)
// skip padding3, ds
movq %r15, %ss:0x10(%r9)
movq %r14, %ss:0x18(%r9)
movq %r13, %ss:0x20(%r9)
movq %r12, %ss:0x28(%r9)
movq %rbp, %ss:0x30(%r9)
movq %rbx, %ss:0x38(%r9)
// skip r11 (0x40)
// skip r10 (0x48)
// skip r9 (0x50)
movq %r8, %ss:0x58(%r9)
movq %rax, %ss:0x60(%r9)
movq %r10, %ss:0x68(%r9) // rcx saved by usys.S
movq %rdx, %ss:0x70(%r9)
movq %rsi, %ss:0x78(%r9)
movq %rdi, %ss:0x80(%r9)
// skip trapno (0x88)
// skip err, padding2 (0x90)
movq %rcx, %ss:0x98(%r9) // rip saved by syscall
// skip cs, padding (0xa0)
movq %r11, %ss:0xa8(%r9) // eflags saved by syscall
movq %rsp, %ss:0xb0(%r9)
movw $KDSEG, %ax
movw %ax, %ds
movw %ax, %es
movq %r9, %rsp
call sysentry_c
// return using SYSRET
cli
movq %rsp, %r11
movw $UDSEG, %ax
movw %ax, %ds
movw %ax, %es
movq %ss:0x10(%r11), %r15
movq %ss:0x18(%r11), %r14
movq %ss:0x20(%r11), %r13
movq %ss:0x28(%r11), %r12
movq %ss:0x30(%r11), %rbp
movq %ss:0x38(%r11), %rbx
movq %ss:0x60(%r11), %rax
movq %ss:0x98(%r11), %rcx // rip to be restored by sysret
movq %ss:0xb0(%r11), %rsp
movq %ss:0xa8(%r11), %r11 // eflags to be restored by sysret
sysretq
trapcommon:
trapcommon:
pushq %rdi
pushq %rdi
pushq %rsi
pushq %rsi
...
...
lib/usys.S
浏览文件 @
143534ce
#include "syscall.h"
#include "syscall.h"
#include "traps.h"
#include "traps.h"
#define SYSCALL(name) \
#define SYSCALL
_INT
(name) \
.globl name; \
.globl name; \
name: \
name: \
movq $SYS_ ## name, %rax; \
movq $SYS_ ## name, %rax; \
int $T_SYSCALL; \
int $T_SYSCALL; \
ret
ret
#define SYSCALL(name) \
.globl name; \
name: \
movq $SYS_ ## name, %rax; \
movq %rcx, %r10; \
syscall; \
ret
SYSCALL(fork)
SYSCALL(fork)
SYSCALL(exit)
SYSCALL(exit)
SYSCALL(wait)
SYSCALL(wait)
...
@@ -16,7 +24,7 @@ SYSCALL(read)
...
@@ -16,7 +24,7 @@ SYSCALL(read)
SYSCALL(write)
SYSCALL(write)
SYSCALL(close)
SYSCALL(close)
SYSCALL(kill)
SYSCALL(kill)
SYSCALL(exec)
SYSCALL
_INT
(exec)
SYSCALL(open)
SYSCALL(open)
SYSCALL(mknod)
SYSCALL(mknod)
SYSCALL(unlink)
SYSCALL(unlink)
...
...
param.h
浏览文件 @
143534ce
...
@@ -11,12 +11,12 @@
...
@@ -11,12 +11,12 @@
#define MAXNAME 16 // max string names
#define MAXNAME 16 // max string names
#define NEPOCH 4
#define NEPOCH 4
#define CACHELINE 64 // cache line size
#define CACHELINE 64 // cache line size
#define CPUKSTACKS (NPROC + NCPU)
#define CPUKSTACKS (NPROC + NCPU
*2
)
#define QUANTUM 10 // scheduling time quantum and tick length (in msec)
#define QUANTUM 10 // scheduling time quantum and tick length (in msec)
#define CILKSHIFT 4 // 2^WORKSHIFT work queue slots
#define CILKSHIFT 4 // 2^WORKSHIFT work queue slots
#define VICTIMAGE 1000000 // cycles a proc executes before an eligible victim
#define VICTIMAGE 1000000 // cycles a proc executes before an eligible victim
#define VERBOSE 0 // print kernel diagnostics
#define VERBOSE 0 // print kernel diagnostics
#define
SPINLOCK_DEBUG 1 // Debug spin locks
#define
SPINLOCK_DEBUG 1 // Debug spin locks
#define RCU_TYPE_DEBUG 1
#define RCU_TYPE_DEBUG 1
#define LOCKSTAT 1
#define LOCKSTAT 1
#define VERIFYFREE 0 // Unreliable, e.g. vma's vmnode pointer gets reused
#define VERIFYFREE 0 // Unreliable, e.g. vma's vmnode pointer gets reused
...
...
编写
预览
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论