这似乎对我有用:
#include <fcntl.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
static void set_non_blocking(int fd)
{
int flags = fcntl(fd, F_GETFL, 0 );
flags |= O_NONBLOCK;
flags = fcntl(fd, F_SETFL, flags);
}
int main(int argc, char ** argv)
{
int fd = fileno(stdin);
char buf[10];
set_non_blocking(fd);
while (read(fd, buf, sizeof buf) < 0) {
perror("read");
sleep(1);
}
return 0;
}
或者你可以使用select
:
int main(int argc, char ** argv)
{
int fd = fileno(stdin);
struct timeval tv = {0,0};
fd_set fdset;
int s;
do {
sleep(1);
FD_ZERO(&fdset);
FD_SET(fd, &fdset);
} while ((s = select(fd+1, &fdset, NULL, NULL, &tv)) == 0);
if (s < 0) {
perror("select");
}
return 0;
}
民意调查也有效:-)
int main(int argc, char ** argv)
{
struct pollfd pfd;
int s;
pfd.fd = fileno(stdin);
pfd.events = POLLRDNORM;
while ((s = poll(&pfd, 1, 0)) == 0) {
perror("polling");
sleep(1);
}
if (s < 0) {
perror("poll");
}
return 0;
}
最后一种方法是将终端设置为“原始”模式。请注意,这会扰乱终端的输出(至少在我的 OS-X 上),因为在 \n 之后 \r 变得必要。另请注意,它需要在结束时撤消(终止tcsetattr
呼叫)。这是唯一不需要 \n 的(即任何按键都可以)
#include <poll.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <termios.h>
static void set_non_blocking(int fd)
{
int flags = fcntl(fd, F_GETFL, 0) | O_NONBLOCK;
if (fcntl(fd, F_SETFL, flags) < 0) {
perror("fcntl");
exit(EXIT_FAILURE);
}
}
int main(int argc, char ** argv)
{
struct termios params;
struct termios params_orig;
char buf[10];
int fd = fileno(stdin);
if (tcgetattr(fd, ¶ms) < 0) {
perror("tcgetattr");
exit(EXIT_FAILURE);
}
params_orig = params;
cfmakeraw(¶ms);
if (tcsetattr(fd, TCSANOW, ¶ms) < 0) {
perror("tcsetattr");
exit(EXIT_FAILURE);
}
set_non_blocking(fd);
while (read(fd, buf, sizeof buf) < 0) {
perror("\rread");
sleep(1);
}
(void) tcsetattr(fd, TCSANOW, ¶ms_orig);
return 0;
}