VirtualBox

Ignore:
Timestamp:
Jan 29, 2009 2:49:44 PM (16 years ago)
Author:
vboxsync
Message:

#3575: Increase VBoxSVC file descriptor limit for Unix platforms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/xpcom/server.cpp

    r16267 r16370  
    6161#include <getopt.h>
    6262
    63 #ifdef RT_OS_SOLARIS
     63#ifndef RT_OS_OS2
    6464# include <sys/resource.h>
    6565#endif
     
    10511051    do
    10521052    {
    1053 #ifdef RT_OS_SOLARIS
    1054         struct rlimit lim;
    1055         if (getrlimit(RLIMIT_NOFILE, &lim) == 0)
    1056         {
    1057             if (lim.rlim_cur < 2048)
    1058             {
    1059                 lim.rlim_cur = 2048;
    1060                 if (setrlimit(RLIMIT_NOFILE, &lim) != 0)
    1061                 {
    1062                     getrlimit(RLIMIT_NOFILE, &lim);
    1063                     printf ("WARNING: failed to increase per-process file-descriptor limit to 2048.\n", lim.rlim_cur);
    1064                 }
    1065             }
    1066         }
    1067         else
    1068             printf ("WARNING: failed to obtain per-process file-descriptor limit.\n");
    1069 #endif
    1070 
    10711053        rc = com::Initialize();
    10721054        if (NS_FAILED (rc))
     
    11861168        }
    11871169
     1170#ifndef RT_OS_OS2
     1171        struct rlimit lim;
     1172        if (getrlimit(RLIMIT_NOFILE, &lim) == 0)
     1173        {
     1174            int k = 10240;
     1175            for (; k >= 2048; k -= 1024)
     1176            {
     1177                if (lim.rlim_cur < k)
     1178                {
     1179                    lim.rlim_cur = k;
     1180                    if (setrlimit(RLIMIT_NOFILE, &lim) == 0)
     1181                        break;
     1182                }
     1183                else
     1184                    break;
     1185            }
     1186            if (k <= 2048)
     1187                printf("WARNING: failed to increase file descriptor limit.\n");
     1188        }
     1189        else
     1190            printf ("WARNING: failed to obtain per-process file-descriptor limit.\n");
     1191#endif
     1192
    11881193        PLEvent *ev;
    11891194        while (gKeepRunning)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette