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

This reverts commit c21a2c7fed.
This commit is contained in:
Dario Casalinuovo
2016-01-21 16:21:44 +01:00
parent 3565a24b44
commit 9b8f9f7a2e
+1 -1
View File
@@ -84,6 +84,6 @@ SystemTimeSource::ControlThread()
status_t err; status_t err;
do { do {
err = WaitForMessage(B_INFINITE_TIMEOUT); err = WaitForMessage(B_INFINITE_TIMEOUT);
} while (err != B_BAD_PORT_ID); } while (err == B_OK || err == B_ERROR);
TRACE("SystemTimeSource::ControlThread() exit\n"); TRACE("SystemTimeSource::ControlThread() exit\n");
} }