操作系统:IRETQ指令
Operating Systems: IRETQ Instruction
我对在 UNIX 中实现的 IRETQ 指令有一些疑问。
IRETQ指令是否只调用异常处理而不调用系统调用?
IRETQ return 是发送到导致 exception/interrupt 的进程,还是由调度程序确定哪个进程会 return 到?
IREQ 是英特尔处理器指令。它没有在 Unix 中实现。
Does IRETQ instruction called only for exception handling and not for syscall?
也用于return中断。
Does IRETQ returns to the process which caused the exception/interrupt or is it determined by the scheduler which procees to return to?
它 returns 到被中断的进程。处理器不知道调度程序。
我对在 UNIX 中实现的 IRETQ 指令有一些疑问。
IRETQ指令是否只调用异常处理而不调用系统调用?
IRETQ return 是发送到导致 exception/interrupt 的进程,还是由调度程序确定哪个进程会 return 到?
IREQ 是英特尔处理器指令。它没有在 Unix 中实现。
Does IRETQ instruction called only for exception handling and not for syscall?
也用于return中断。
Does IRETQ returns to the process which caused the exception/interrupt or is it determined by the scheduler which procees to return to?
它 returns 到被中断的进程。处理器不知道调度程序。