Pseudo vs. True Blocking

In 16 Windows environments, true blocking is not supported by the OS, thus a blocking operation which cannot be completed immediately is handled as follows. The service provider initiates the operation, and then enters a loop during which it dispatches any Windows messages (yielding the processor to another thread if necessary) and then checks for the completion of the Windows Sockets function. If the function has completed, or if WSPCancelBlockingCall has been invoked, the loop is terminated and the blocking function completes with an appropriate result. This is what is meant by the term "pseudo blocking", and the loop referred to above is known as the "default blocking hook".