diff options
author | Guido van Rossum <guido@python.org> | 1996-06-11 15:11:34 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-06-11 15:11:34 +0000 |
commit | 1f0cf939b600143f0b4017f0e23aa9edd1eda49d (patch) | |
tree | 5a8eb0f0a0e66faea4f5d5dd779dce0ce8f11e84 /Modules/fcntlmodule.c | |
parent | e610cacbd7eb948e65d76e735c20a9b046b0849a (diff) | |
download | cpython-1f0cf939b600143f0b4017f0e23aa9edd1eda49d.tar.gz |
A fcntl implementation for systems (like Solaris) without flock() call.
By Sjoerd.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r-- | Modules/fcntlmodule.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index d2efd60311..c547ed0a47 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -27,6 +27,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "allobjects.h" #include "modsupport.h" +#include <fcntl.h> + /* fcntl(fd, opt, [arg]) */ @@ -144,7 +146,32 @@ fcntl_flock(self, args) return NULL; BGN_SAVE +#ifdef HAVE_FLOCK ret = flock(fd, code); +#else + +#ifndef LOCK_SH +#define LOCK_SH 1 /* shared lock */ +#define LOCK_EX 2 /* exclusive lock */ +#define LOCK_NB 4 /* don't block when locking */ +#define LOCK_UN 8 /* unlock */ +#endif + { + struct flock l; + if (code == LOCK_UN) + l.l_type = F_UNLCK; + else if (code & LOCK_SH) + l.l_type = F_RDLCK; + else if (code & LOCK_EX) + l.l_type = F_WRLCK; + else { + err_setstr(ValueError, "unrecognized flock argument"); + return NULL; + } + l.l_whence = l.l_start = l.l_len = 0; + ret = fcntl(fd, (code & LOCK_NB) ? F_SETLK : F_SETLKW, &l); + } +#endif /* HAVE_FLOCK */ END_SAVE if (ret < 0) { err_errno(IOError); |