On Sep 19 19:30, BJ wrote:
> I have a file locking problem that is solved under Mac and Linux using
> fcntl:
> int lockRepFile (int fd, char lock, size_t from, size_t length) {
> struct flock fl;
>
> fl.l_start = from;
> fl.l_len = length;
> fl.l_pid
I have a file locking problem that is solved under Mac and Linux using
fcntl:
int lockRepFile (int fd, char lock, size_t from, size_t length) {
struct flock fl;
fl.l_start = from;
fl.l_len = length;
fl.l_pid = 0;
if (lock == 'r') fl.l_type = F_RDLCK;
els
2 matches
Mail list logo