Ask Question

Which of the following is true of a blocking system call? The application continues to execute its code when the call is issued. The call returns immediately without waiting for the I/O to complete. The execution of the application is suspended when the call is issued. Blocking application code is harder to understand than non-blocking application code.

+1
Answers (1)
  1. 26 June, 06:28
    0
    The execution of the application is suspended when the call is issued.

    Explanation:

    In a blocking system call, once the call is initiated, the result of the call will have to be gotten before the system can carry on with it execution.

    In this case, the calling process is suspended or put on wait until the call has finished execution and return it result

    With a blocking system call, the caller can't do anything until the system call returns, even if the system call might be lengthy or take a large amount of time.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which of the following is true of a blocking system call? The application continues to execute its code when the call is issued. The call ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers