is not standardized, and results may be unexpected.
Especially considering Linux now starts to add O_NONBLOCK support
on disk files but the implementation is far from complete yet.
/*
- * $Id: disk.cc,v 1.165 2003/04/24 06:35:08 hno Exp $
+ * $Id: disk.cc,v 1.166 2004/11/06 21:37:59 hno Exp $
*
* DEBUG: section 6 Disk I/O Routines
* AUTHOR: Harvest Derived
if (FILE_MODE(mode) == O_WRONLY)
mode |= O_APPEND;
- mode |= SQUID_NONBLOCK;
-
errno = 0;
fd = open(path, mode, 0644);