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/include/proto.h | |
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/include/proto.h')
-rw-r--r-- | source/include/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index b6aeb192324..f874f0e1a19 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -214,6 +214,7 @@ void standard_sub_vsnum(char *str, user_struct *vuser, int snum); int sys_select(int maxfd, fd_set *fds,struct timeval *tval); int sys_select(int maxfd, fd_set *fds,struct timeval *tval); +int sys_select_intr(int maxfd, fd_set *fds,struct timeval *tval); int sys_usleep(long usecs); int sys_stat(const char *fname,SMB_STRUCT_STAT *sbuf); int sys_fstat(int fd,SMB_STRUCT_STAT *sbuf); |