I'm reading through my computer organization textbook and have come across a list of events/exceptions, one of them says "Invoke the operating system from user program". What exactly does this mean?
Does this refer to a system call?
I'm reading through my computer organization textbook and have come across a list of events/exceptions, one of them says "Invoke the operating system from user program". What exactly does this mean?
Does this refer to a system call?
The INVOKE directive enables a statement in a program to be processed by the operating system as if it were entered as a command from the terminal. It provides access to most operating system utilities and facilities.
As it says in the link above, Use the INVOKE directive to have the operating system treat a character string from a program as an operating system command from the terminal.
Therefore, in your case, it means getting the attention of the OS from the user program using certain programming techniques.