作业信息
这个作业属于哪个课程 | <2020-2021-1Linux内核原理与分析)> |
---|---|
这个作业要求在哪里 | <[2020-2021-1Linux内核原理与分析第八周作业](https://www.cnblogs.com/assignment/p/14078923.html> |
这个作业的目标 | <理解进程调度时机> |
作业正文 | ... https://www.cnblogs.com/assignment/p/14038939.html |
指令
cd LinuxKernel
rm -rf menu
git clone https://github.com/mengning/menu.git
cd menu
mv test_exec.c test.c
make rootfs
qemu -kernel ../linux-3.18.6/arch/x86/boot/bzImage -initrd ../rootfs.img
cd ..
qemu -kernel ../linux-3.18.6/arch/x86/boot/bzImage -initrd ../rootfs.img -s -S
gdb
file ../linux-3.18.6/vmlinux
target remote:1234
b schedule
b context_switch
b switch_to
b pick_next_task
实验截图
配置环境
1、schedule
2、context_switch