lockflock.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  3. ** distribution information.
  4. */
  5. /* $Id: lockflock.c,v 1.3 1999/12/06 13:18:55 mrsam Exp $ */
  6. #if HAVE_CONFIG_H
  7. #include "config.h"
  8. #endif
  9. #include <sys/types.h>
  10. #if HAVE_FCNTL_H
  11. #include <fcntl.h>
  12. #endif
  13. #if HAVE_SYS_FCNTL_H
  14. #include <sys/fcntl.h>
  15. #endif
  16. #if HAVE_SYS_FILE_H
  17. #include <sys/file.h>
  18. #endif
  19. #include <errno.h>
  20. #include "liblock.h"
  21. int ll_lockfd(int fd, int ltype, LL_OFFSET_TYPE start, LL_OFFSET_TYPE len)
  22. {
  23. if (start || len
  24. || (ltype & ll_whence_curpos)
  25. || (ltype & ll_whence_end))
  26. {
  27. errno=EINVAL;
  28. return (-1);
  29. }
  30. return (flock(fd, ltype & ll_unlock ? LOCK_UN:
  31. (ltype & ll_writelock ? LOCK_EX:LOCK_SH) |
  32. (ltype & ll_wait ? 0:LOCK_NB)));
  33. }