summaryrefslogtreecommitdiffstats
path: root/libexec/getty
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2013-04-21 04:25:49 +0000
committerderaadt <deraadt@openbsd.org>2013-04-21 04:25:49 +0000
commitd04572cf80bfe08977990ddba8bf17a0354ff080 (patch)
tree1b04fc94a422f44656149435b9574671d1de746f /libexec/getty
parentrevert 1.45. it depended on a kernel change we will not be making, and (diff)
downloadwireguard-openbsd-d04572cf80bfe08977990ddba8bf17a0354ff080.tar.xz
wireguard-openbsd-d04572cf80bfe08977990ddba8bf17a0354ff080.zip
use poll + nanosleep instead of select with a fixed size fd_set
ok tedu
Diffstat (limited to 'libexec/getty')
-rw-r--r--libexec/getty/subr.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c
index b97c0074a9a..83b57191f22 100644
--- a/libexec/getty/subr.c
+++ b/libexec/getty/subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr.c,v 1.19 2009/10/27 23:59:31 deraadt Exp $ */
+/* $OpenBSD: subr.c,v 1.20 2013/04/21 04:25:49 deraadt Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -33,11 +33,12 @@
* Melbourne getty.
*/
#define COMPAT_43
+#include <sys/ioctl.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
+#include <poll.h>
#include <termios.h>
-#include <sys/ioctl.h>
#include "gettytab.h"
#include "pathnames.h"
@@ -679,23 +680,21 @@ portselector(void)
char *
autobaud(void)
{
- fd_set rfds;
- struct timeval timeout;
+ struct pollfd pfd[1];
+ struct timespec ts;
char c, *type = "9600-baud";
(void)tcflush(0, TCIOFLUSH);
- FD_ZERO(&rfds);
- FD_SET(0, &rfds);
- timeout.tv_sec = 5;
- timeout.tv_usec = 0;
- if (select(1, &rfds, (fd_set *)NULL, (fd_set *)NULL, &timeout) <= 0)
+ pfd[0].fd = 0;
+ pfd[0].events = POLLIN;
+ if (poll(pfd, 1, 5 * 1000) <= 0)
return (type);
if (read(STDIN_FILENO, &c, sizeof(char)) != sizeof(char))
return (type);
- timeout.tv_sec = 0;
- timeout.tv_usec = 20;
- (void) select(0, (fd_set *)NULL, (fd_set *)NULL,
- (fd_set *)NULL, &timeout);
+
+ ts.tv_sec = 0;
+ ts.tv_nsec = 20 * 1000;
+ nanosleep(&ts, NULL);
(void)tcflush(0, TCIOFLUSH);
switch (c & 0377) {