| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/ |
Upload File : |
/* 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);