Searched refs:fl (Results 1 – 1 of 1) sorted by relevance
37 struct flock64 fl; in lockf64() local38 memset(&fl, 0, sizeof(fl)); in lockf64()39 fl.l_whence = SEEK_CUR; in lockf64()40 fl.l_start = 0; in lockf64()41 fl.l_len = length; in lockf64()44 fl.l_type = F_UNLCK; in lockf64()46 return fcntl(fd, F_SETLK64, &fl); in lockf64()50 fl.l_type = F_WRLCK; in lockf64()51 return fcntl(fd, F_SETLKW64, &fl); in lockf64()55 fl.l_type = F_WRLCK; in lockf64()[all …]