flock.c
上传用户:dayuan858
上传日期:2007-01-04
资源大小:194k
文件大小:2k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1989 Mark Davies
  3.  * Copyright (c) 1990 Andy Linton
  4.  * Copyright (c) 1990 Victoria University of Wellington.
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms are permitted provided
  8.  * that: (1) source distributions retain this entire copyright notice and
  9.  * comment, and (2) distributions including binaries display the following
  10.  * acknowledgement:  ``This product includes software developed by the
  11.  * Victoria University of Wellington, New Zealand and its contributors''
  12.  * in the documentation or other materials provided with the distribution
  13.  * and in all advertising materials mentioning features or use of this
  14.  * software.
  15.  * Neither the name of the University nor the names of its contributors may
  16.  * be used to endorse or promote products derived from this software without
  17.  * specific prior written permission.
  18.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  19.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  20.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  21.  */
  22. #ifdef HAVE_CONFIG_H
  23. #include <config.h>
  24. #endif
  25. #ifndef HAVE_FLOCK /*  defined(SYSV) || defined(ISC) */
  26. #include <unistd.h>
  27. #include <sys/types.h>
  28. #include <errno.h>
  29. #ifdef ISC
  30. # include <net/errno.h>
  31. #endif
  32. #include <flock.h>               /* defines normally in <sys/file.h> */
  33. #if defined(F_SETLK) && defined(F_SETLKW)
  34. flock(fd, operation)
  35. int fd, operation;
  36. {
  37. int op, ret;
  38. struct flock arg;
  39. extern int errno;
  40. op = (LOCK_NB & operation) ? F_SETLK : F_SETLKW;
  41. arg.l_type = (LOCK_EX & operation) ? F_WRLCK :
  42. (LOCK_SH & operation) ? F_RDLCK : F_UNLCK;
  43. arg.l_whence = 0;
  44. arg.l_start = 0;
  45. arg.l_len = 0;
  46. arg.l_pid = 0;
  47. if ((ret = fcntl(fd, op, &arg)) == -1) {
  48. if (errno == EACCES || errno == EAGAIN)
  49. errno = EWOULDBLOCK;
  50. }
  51. return (ret);
  52. }
  53. #else
  54. flock(fd, operation)
  55. int fd, operation;
  56. {
  57. int op, ret;
  58. extern int errno;
  59. op = (LOCK_UN & operation) ? F_ULOCK :
  60.   (LOCK_NB & operation) ? F_TLOCK : F_LOCK;
  61. if ((ret = lockf(fd, op, 0)) == -1) {
  62. if (errno == EACCES || errno == EAGAIN)
  63. errno = EWOULDBLOCK;
  64. }
  65. return (ret);
  66. }
  67. #endif /* F_SETLK && F_SETLKW */
  68. #endif /* HAVE_FLOCK */