课堂练习及课后作业2.3:系统调用

第1关:版本1内核执行的前 3 个系统调用

分析版本1内核,回答下列问题:
系统运行时,执行的前 3 个系统调用的编号和名字分别是什么?

(gdb) b system_call  
Breakpoint 2 at 0x7764  
(gdb) c  
Continuing.
Breakpoint 2, 0x00007764 in system_call ()  
1: current->pid = 0  

你可能感兴趣的:(Educoder实训,python,java)