comparison src/os/win32/ngx_files.h @ 3595:8944c3e318ab stable-0.7

merge r3498, r3499: opening files fixes: *) use non-blocking open() not to hang on FIFO files, etc. *) do not log misleading errno in "not a regular file" error
author Igor Sysoev <igor@sysoev.ru>
date Mon, 07 Jun 2010 12:08:44 +0000
parents d65ba5392f59
children 555de5bdb800
comparison
equal deleted inserted replaced
3594:8a5106c2a377 3595:8944c3e318ab
62 62
63 #define NGX_FILE_RDONLY GENERIC_READ 63 #define NGX_FILE_RDONLY GENERIC_READ
64 #define NGX_FILE_WRONLY GENERIC_WRITE 64 #define NGX_FILE_WRONLY GENERIC_WRITE
65 #define NGX_FILE_RDWR GENERIC_READ|GENERIC_WRITE 65 #define NGX_FILE_RDWR GENERIC_READ|GENERIC_WRITE
66 #define NGX_FILE_APPEND FILE_APPEND_DATA|SYNCHRONIZE 66 #define NGX_FILE_APPEND FILE_APPEND_DATA|SYNCHRONIZE
67 #define NGX_FILE_NONBLOCK 0
67 68
68 #define NGX_FILE_CREATE_OR_OPEN OPEN_ALWAYS 69 #define NGX_FILE_CREATE_OR_OPEN OPEN_ALWAYS
69 #define NGX_FILE_OPEN OPEN_EXISTING 70 #define NGX_FILE_OPEN OPEN_EXISTING
70 #define NGX_FILE_TRUNCATE CREATE_ALWAYS 71 #define NGX_FILE_TRUNCATE CREATE_ALWAYS
71 72