This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10213903403
/
os_kernel_lab
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix bug in do_fork function
main
chyyuu
8 years ago
parent
8d0dbae554
commit
f8d953397b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
labcodes_answer/lab8_result/kern/process/proc.c
+ 1
- 1
labcodes_answer/lab8_result/kern/process/proc.c
View File
@ -484,7 +484,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
goto
bad_fork_cleanup_kstack
;
}
if
(
copy_mm
(
clone_flags
,
proc
)
!
=
0
)
{
goto
bad_fork_cleanup_
kstack
;
goto
bad_fork_cleanup_
fs
;
}
copy_thread
(
proc
,
stack
,
tf
)
;
Write
Preview
Loading…
Cancel
Save