diff src/os/unix/ngx_errno.h @ 4475:0b05acc045eb

Added openat()/fstatat().
author Andrey Belov <defan@nginx.com>
date Mon, 13 Feb 2012 16:13:21 +0000
parents d620f497c50f
children c05cfc46b3bc
line wrap: on
line diff
--- a/src/os/unix/ngx_errno.h
+++ b/src/os/unix/ngx_errno.h
@@ -48,6 +48,11 @@ typedef int               ngx_err_t;
 #define NGX_EILSEQ        EILSEQ
 #define NGX_ENOMOREFILES  0
 
+#if (NGX_HAVE_OPENAT)
+#define NGX_EMLINK        EMLINK
+#define NGX_ELOOP         ELOOP
+#endif
+
 #if (__hpux__)
 #define NGX_EAGAIN        EWOULDBLOCK
 #else