diff options
| author | Lukas Fürmetz <fuermetz@mailbox.org> | 2017-09-08 17:20:29 +0200 |
|---|---|---|
| committer | Lukas Fürmetz <fuermetz@mailbox.org> | 2017-09-08 17:20:29 +0200 |
| commit | 14e216d75eac7cbfa921c01ae87912d8439d6c4d (patch) | |
| tree | b60fb0009473ebe4e4bd1f492b7f020fb4c6cde6 /vterm-module.c | |
| parent | 1e18fcf99e43ab3a0bb849d295e380394880d01a (diff) | |
Sleep for 20 milliseconds not microseconds
Diffstat (limited to 'vterm-module.c')
| -rw-r--r-- | vterm-module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vterm-module.c b/vterm-module.c index 645e375..0d32cbd 100644 --- a/vterm-module.c +++ b/vterm-module.c @@ -383,7 +383,7 @@ static void *event_loop(void *arg) { FD_SET(term->masterfd, &rfds); if (select(term->masterfd + 1, &rfds, NULL, NULL, NULL) == 1) { kill(getpid(), SIGUSR1); - usleep(20); + usleep(20000); } } |
