diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-06-11 05:57:58 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-06-11 05:57:58 +0000 |
commit | b28cc4163bc2faaa80c5782fc02c8f03c410cdeb (patch) | |
tree | 58a5eda9a58f43d9f6bad4f7037ee852f69bf00e /source/client/client.c | |
parent | 1871d4a3f64401f9a6f749ce26d1715e3bcdeac3 (diff) | |
download | samba-b28cc4163bc2faaa80c5782fc02c8f03c410cdeb.tar.gz samba-b28cc4163bc2faaa80c5782fc02c8f03c410cdeb.tar.xz samba-b28cc4163bc2faaa80c5782fc02c8f03c410cdeb.zip |
Linux kernel oplocks now seem to work, but need a _lot_ of testing
I had to modify sys_select() to not loop on EINTR. I added a wrapper
called sys_select_intr() which gives the old behaviour.
Diffstat (limited to 'source/client/client.c')
-rw-r--r-- | source/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/client/client.c b/source/client/client.c index 6449b1335c6..cbc4eb6f7cd 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -1751,8 +1751,8 @@ static void wait_keyboard(void) timeout.tv_sec = 20; timeout.tv_usec = 0; - sys_select(MAX(cli->fd,fileno(stdin))+1,&fds,&timeout); - + sys_select_intr(MAX(cli->fd,fileno(stdin))+1,&fds,&timeout); + if (FD_ISSET(fileno(stdin),&fds)) return; |