指令 subl $4,%esp movl %eax,(%esp) 可以用一下列哪一个指令表示?()
A. . pushl %eax;
B. . pop %eax;
C. . push %esp;
D. . pop %esp
查看答案
指令movl %eax,%edx与下列哪个表达式是等价的?()
A. . edx=eax;
B. . eax=edx;
C. .eax+edx;
D. . eax*edx
linux系统调用system_call的SAVE_ALL对输入参数寄存器压栈,其中下列哪一个不是SAVE_ALL压栈的寄存器?()
A. . %es;
B. . %eax;
C. . %ebp;
D. . %esp;
在linux源代码中进程控制块使用什么数据结构来表示()?
A. . struct task_struct;
B. . struct tcb;
C. . struct pcb;
D. . struct task;
进程父子关系是通过什么数据结构连接起来的?()
A. . 单向链表;
B. . 数组;
C. . 双向链表;
D. . 队列;