IOV_MAX on modern Linux

Igor Sysoev is at rambler-co.ru
Tue May 20 13:58:39 MSD 2008


On Tue, May 20, 2008 at 11:52:19AM +0200, Roxis wrote:

> On Tuesday 20 May 2008, Igor Sysoev wrote:
> > Кто-нибудь может посмотреть, какие include'ы нужны, чтобы появился
> > IOV_MAX на современных Линуксах ?
> >
> > Проблема описана здесь:
> >
> > http://marc.info/?l=nginx&m=121077400507290&w=2
> > http://marc.info/?l=nginx&m=121092937427862&w=2
> 
> glibc 2.7
> 
> #define _GNU_SOURCE
> #include <stdio.h>
> #include <limits.h>
> 
> int main() {
>     printf("IOV_MAX is %d\n", IOV_MAX);
> }

А кто-нибудь может проверить прилагаемый патч на старых Линуксах - 2.2, 2.4 ?


-- 
Игорь Сысоев
http://sysoev.ru
-------------- next part --------------
Index: src/os/unix/ngx_linux_config.h
===================================================================
--- src/os/unix/ngx_linux_config.h	(revision 1337)
+++ src/os/unix/ngx_linux_config.h	(working copy)
@@ -47,6 +47,7 @@
 
 #include <time.h>               /* tzset() */
 #include <malloc.h>             /* memalign() */
+#include <limits.h>             /* IOV_MAX */
 #include <sys/ioctl.h>
 #include <sys/sysctl.h>
 #include <crypt.h>


More information about the nginx-ru mailing list