Searched defs:unlock_it (Results 1 - 1 of 1) sorted by relevance

/httpd/test/
H A Dtime-sem.c74 static struct flock unlock_it; variable in typeref:struct:flock
94 unlock_it.l_whence = SEEK_SET; /* from current point */
95 unlock_it.l_start = 0; /* -"- */
96 unlock_it.l_len = 0; /* until end of file */
97 unlock_it.l_type = F_UNLCK; /* set exclusive/write lock */
98 unlock_it.l_pid = 0; /* pid not actually interesting */
126 if (fcntl (fcntl_fd, F_SETLKW, &unlock_it) < 0)
128 perror ("fcntl unlock_it");

Completed in 21 milliseconds