'Invoke the operating system from user program' 是什么意思?

What is meant by 'Invoke the operating system from user program'?

我正在阅读我的计算机组织教科书,发现了 events/exceptions 的列表,其中一个说 "Invoke the operating system from user program"。这到底是什么意思?

这是指系统调用吗?

INVOKE 指令使程序中的语句能够被操作系统处理,就好像它是从终端输入的命令一样。它提供对大多数操作系统实用程序和设施的访问。

Taken from this link

如上文link所述,使用INVOKE指令让操作系统将程序中的字符串视为来自终端的操作系统命令。

因此,在您的情况下,这意味着使用某些编程技术从用户程序中获得 OS 的注意。