From 5517175ed53b877720fdf5a1a4085386b40c4590 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 26 Dec 2018 13:23:04 -0500 Subject: Eliminate effectively all uses of struct timeval. Outide of one Mac portability shim, anyway. Associated select(2) calls become pselect(2) calls. --- libgpsd_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgpsd_core.c') diff --git a/libgpsd_core.c b/libgpsd_core.c index a752f10f..15fa8070 100644 --- a/libgpsd_core.c +++ b/libgpsd_core.c @@ -1054,7 +1054,7 @@ int gpsd_await_data(fd_set *rfds, * actually matter here since select returns whenever one of * the file descriptors in the set goes ready. The point * of tracking maxfd is to keep the set of descriptors that - * select(2) has to poll here as small as possible (for + * pselect(2) has to poll here as small as possible (for * low-clock-rate SBCs and the like). * * pselect() is preferable to vanilla select, to eliminate @@ -1098,7 +1098,7 @@ int gpsd_await_data(fd_set *rfds, if (FD_ISSET(i, rfds)) str_appendf(dbuf, sizeof(dbuf), " %d ", i); gpsd_log(errout, LOG_SPIN, - "select() {%s} at %f (errno %d)\n", + "pselect() {%s} at %f (errno %d)\n", dbuf, timestamp(), errno); } -- cgit v1.2.1