Home | History | Annotate | Download | only in Scripts

Lines Matching refs:flags

2001     my $flags = fcntl($fh, F_GETFL, 0) or die "Couldn't get filehandle flags";
2004 $flags |= O_NONBLOCK;
2006 $flags &= ~O_NONBLOCK;
2009 fcntl($fh, F_SETFL, $flags) or die "Couldn't set filehandle flags";