Procházet zdrojové kódy

* Upped user limit for processes to 60.

svn: 1851
Bryan Drewery před 21 roky
rodič
revize
216a934a65
2 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 1 0
      doc/UPDATES
  2. 2 2
      src/debug.c

+ 1 - 0
doc/UPDATES

@@ -27,6 +27,7 @@ Lines prefixxed with '-' were disabled before release and are not finishsed.
 * Fixed DNS staying on nameservers that fail to give replies
 * Removed channel flag '+|-manop' as it was redundant with chanint 'manop'
 * Removed channel flag '+|-nomop' as it was redundant with chanint 'mop'
+* Upped user limit for processes to 60.
 
 1.2.2
 * Don't sanity check flags for users on DCC CHAT if they are on the bot via .botcmd.

+ 2 - 2
src/debug.c

@@ -54,8 +54,8 @@ void setlimits()
   setrlimit(RLIMIT_STACK, &stacklim);
 */
   /* do NOT dump a core. */
-  plim.rlim_cur = 40;
-  plim.rlim_max = 40;
+  plim.rlim_cur = 60;
+  plim.rlim_max = 60;
   corelim.rlim_cur = 0;
   corelim.rlim_max = 0;
 #else /* DEBUG */