clocksd: handle EINTR on read() (#21892)
* handle EINTR on read * Update selfdrive/clocksd/clocksd.cc Co-authored-by: Willem Melching <willem.melching@gmail.com> Co-authored-by: Willem Melching <willem.melching@gmail.com> old-commit-hash: 71a44cc27569fe77521ed0d2f0702e6ddd5f1f1a
This commit is contained in:
@@ -50,7 +50,10 @@ int main() {
|
||||
|
||||
uint64_t expirations = 0;
|
||||
while (!do_exit && (err = read(timerfd, &expirations, sizeof(expirations)))) {
|
||||
if (err < 0) break;
|
||||
if (err < 0) {
|
||||
if (errno == EINTR) continue;
|
||||
break;
|
||||
}
|
||||
#else
|
||||
// Just run at 1Hz on apple
|
||||
while (!do_exit) {
|
||||
|
||||
Reference in New Issue
Block a user