summaryrefslogtreecommitdiff
path: root/libgpsd_core.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2018-12-27 05:39:42 -0500
committerEric S. Raymond <esr@thyrsus.com>2018-12-27 05:39:42 -0500
commit1998c0301f6f9542bf5dd51e8d18f3d7f4e76023 (patch)
tree47b092141978039c773e4a4e9f992eab90ee340b /libgpsd_core.c
parente81cfb77ab1a8de2e7cac6883e632124bcbe6f35 (diff)
downloadgpsd-1998c0301f6f9542bf5dd51e8d18f3d7f4e76023.tar.gz
Factor most uses of pselect(2) into a new utility function named 'nanowait'.
Also, remove sime header inclusions discovered to be unnecessary during the change.
Diffstat (limited to 'libgpsd_core.c')
-rw-r--r--libgpsd_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgpsd_core.c b/libgpsd_core.c
index cc7d5fbd..e46104ff 100644
--- a/libgpsd_core.c
+++ b/libgpsd_core.c
@@ -1060,7 +1060,7 @@ int gpsd_await_data(fd_set *rfds,
* 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
+ * pselect(2) is preferable to vanilla select, to eliminate
* the once-per-second wakeup when no sensors are attached.
* This cuts power consumption.
*/