FreeCalypso > hg > freecalypso-tools
view rvinterf/tmsh/oneshot.c @ 619:f82551c77e58
libserial-newlnx: ASYNC_LOW_LATENCY patch reverted
Reports from Das Signal indicate that loadtools performance on Debian
is about the same as on Slackware, and that including or omitting the
ASYNC_LOW_LATENCY patch from Serg makes no difference. Because the
patch in question does not appear to be necessary, it is being reverted
until and unless someone other than Serg reports an actual real-world
system on which loadtools operation times are slowed compared to the
Mother's Slackware reference and on which Slackware-like performance
can be restored by setting the ASYNC_LOW_LATENCY flag.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 27 Feb 2020 01:09:48 +0000 |
parents | 27c41e4b21ae |
children |
line wrap: on
line source
/* * This module implements the one-shot mode of operation for fc-tmsh. */ #include <sys/types.h> #include <sys/errno.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include "exitcodes.h" extern int oneshot_nowait; extern int sock; extern int got_tm_response; oneshot_command(argc, argv) char **argv; { fd_set fds; int rc; if (!oneshot_nowait) init(); /* to catch the response properly */ rc = dispatch_oneshot_cmd(argc, argv); if (rc) exit(rc); if (oneshot_nowait) exit(0); /* wait for response */ for (;;) { FD_ZERO(&fds); FD_SET(sock, &fds); rc = select(sock+1, &fds, 0, 0, 0); if (rc < 0) { if (errno == EINTR) continue; perror("select"); exit(ERROR_UNIX); } if (FD_ISSET(sock, &fds)) handle_rvinterf_input(); if (got_tm_response) exit(0); } }