中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > 综合其它
visiting file in multiple processes
作者:未知 时间:2005-09-13 23:33 出处:Blog.ChinaUnix.net 责编:chinaitpower
              摘要:visiting file in multiple processes
use lockf()
sometime, may use lock file as indicator ( when not in C and no lockf support )

NAME
       lockf - apply, test or remove a POSIX lock on an open file
 
SYNOPSIS
       #include <unistd.h>
 
       int lockf(int fd, int cmd, off_t len);
 
DESCRIPTION
       Apply,  test  or remove a POSIX lock on a section of an open file.  The
       file is specified by fd, a file descriptor open for writing, the action
       by  cmd,  and  the section consists of byte positions pos..pos+len-1 if
       len is positive, and pos-len..pos-1 if len is negative,  where  pos  is
       the current file position, and if len is zero, the section extends from
       the current file position to infinity,  encompassing  the  present  and
       future  end-of-file  positions.   In  all cases, the section may extend
       past current end-of-file.
 
       On Linux, this call is just an interface for  fcntl(2).   (In  general,
       the relation between lockf and fcntl is unspecified.)
 
       Valid operations are given below:
 
       F_LOCK Set  an exclusive lock on the specified section of the file.  If
              (part of) this section is already locked, the call blocks  until
              the previous lock is released.  If this section overlaps an ear-
              lier locked section, both are merged.  File locks  are  released
              as  soon  as  the  process  holding  the  locks closes some file
              descriptor for the file. A child process does not inherit  these
              locks.
 
       F_TLOCK
              Same  as  F_LOCK  but the call never blocks and returns an error
              instead if the file is already locked.
 
       F_ULOCK
              Unlock the indicated section of the  file.   This  may  cause  a
              locked section to be split into two locked sections.
 
       F_TEST Test  the lock: return 0 if the specified section is unlocked or
              locked by this process; return  -1,  set  errno  to  EACCES,  if
              another process holds a lock.
RETURN VALUE
       On  success,  zero is returned.  On error, -1 is returned, and errno is
       set appropriately.
 
ERRORS
       EAGAIN The file is locked and F_TLOCK or F_TEST was specified,  or  the
              operation  is prohibited because the file has been memory-mapped
              by another process.
 
       EBADF  fd is not an open file descriptor.
 
       EDEADLK
              The command was T_LOCK and this lock  operation  would  cause  a
              deadlock.
 
       EINVAL An invalid operation was specified in fd.
 
       ENOLCK Too many segment locks open, lock table is full.
 
CONFORMING TO
       SYSV, POSIX 1003.1-2001
 
SEE ALSO
       fcntl(2), flock(2)
       There are also locks.txt and mandatory.txt in /usr/src/linux/Documenta-
       tion.
 
Linux 2.0                         2002-04-22                          LOCKF(3)
 

关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有