Revert "SystemTimeSource: Exit loop when the port is closed"

This reverts commit c21a2c7feda5def95e3a7a91b440dc3b0cfc8ccb.
This commit is contained in:
Dario Casalinuovo 2016-01-21 16:21:00 +01:00
parent 3565a24b44
commit 9b8f9f7a2e

View File

@ -84,6 +84,6 @@ SystemTimeSource::ControlThread()
status_t err;
do {
err = WaitForMessage(B_INFINITE_TIMEOUT);
} while (err != B_BAD_PORT_ID);
} while (err == B_OK || err == B_ERROR);
TRACE("SystemTimeSource::ControlThread() exit\n");
}