summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-05-23 19:21:37 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-05-23 19:21:37 -0700
commit5aacefa978182e8fabfa8c5c703ffb19108c44ce (patch)
tree259e533eeb0ebf3b3ceea451fffa4d95275a4e81 /stream.c
parent009d16bee2ae23593c11c47db1af385e70f3a700 (diff)
downloadtxr-5aacefa978182e8fabfa8c5c703ffb19108c44ce.tar.gz
txr-5aacefa978182e8fabfa8c5c703ffb19108c44ce.tar.bz2
txr-5aacefa978182e8fabfa8c5c703ffb19108c44ce.zip
Don't use sleep function in tail streams.
Let's use our usleep_wrap function which uses nanosleep. The old sleep can interact with SIGALRM. * stream.c (tail_calc): Calculate microseconds instead of seconds. (sleep): Wrapper for Windows gone. (tail_strategy): Rename sec variable to usec. Use usleep_wrap instead of sleep. * sysif.c (usleep_wrap): Change to extern. * sysif.h (usleep_wrap): Declaration updated.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c26
1 files changed, 7 insertions, 19 deletions
diff --git a/stream.c b/stream.c
index c25a9739..469416be 100644
--- a/stream.c
+++ b/stream.c
@@ -864,37 +864,25 @@ static struct strm_ops stdio_ops =
static struct strm_ops stdio_sock_ops;
#endif
-static void tail_calc(unsigned long *state, int *sec, int *mod)
+static void tail_calc(unsigned long *state, int *usec, int *mod)
{
unsigned long count = (*state)++;
if (count > 32)
count = 32;
- *sec = 1 << (count / 8);
+ *usec = 1048576 << (count / 8);
*mod = 8 >> (count / 8);
if (*mod == 0)
*mod = 1;
}
-#if !HAVE_POSIX_SLEEP && HAVE_WINDOWS_H
-
-int sleep(int sec);
-
-int sleep(int sec)
-{
- Sleep(sec * 1000);
- return 0;
-}
-
-#endif
-
static void tail_strategy(val stream, unsigned long *state)
{
struct stdio_handle *h = coerce(struct stdio_handle *, stream->co.handle);
- int sec = 0, mod = 0;
+ int usec = 0, mod = 0;
val mode = nil;
struct stdio_mode m, m_r = stdio_mode_init_r;
- tail_calc(state, &sec, &mod);
+ tail_calc(state, &usec, &mod);
if (h->is_rotated) {
/* We already know that the file has rotated. The caller
@@ -907,7 +895,7 @@ static void tail_strategy(val stream, unsigned long *state)
} else if (h->f != 0) {
/* We have a file and it hasn't rotated; so sleep on it. */
sig_save_enable;
- sleep(sec);
+ usleep_wrap(num(usec));
sig_restore_enable;
}
@@ -940,9 +928,9 @@ static void tail_strategy(val stream, unsigned long *state)
}
/* Unable to open; keep trying. */
- tail_calc(state, &sec, &mod);
+ tail_calc(state, &usec, &mod);
sig_save_enable;
- sleep(sec);
+ usleep_wrap(num(usec));
sig_restore_enable;
continue;
}