ulockmgr.h

来自「FUSE文件系统开发工具,将内核层面的文件系统开发过程平移到应用层面上来。」· C头文件 代码 · 共 25 行

H
25
字号
/*  libulockmgr: Userspace Lock Manager Library  Copyright (C) 2006  Miklos Szeredi <miklos@szeredi.hu>  This program can be distributed under the terms of the GNU LGPLv2.  See the file COPYING.LIB.*/#include <stdint.h>#include <fcntl.h>#include <sys/types.h>/** * Perform POSIX locking operation * * @param fd the file descriptor * @param cmd the locking command (F_GETFL, F_SETLK or F_SETLKW) * @param lock the lock parameters * @param owner the lock owner ID cookie * @param owner_len length of the lock owner ID cookie * @return 0 on success -errno on error */int ulockmgr_op(int fd, int cmd, struct flock *lock, const void *owner,		size_t owner_len);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?