40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
$NetBSD: patch-zc,v 1.6 2015/07/09 15:17:35 ryoon Exp $
|
|
|
|
--- mail/app/nsMailApp.cpp.orig 2015-06-08 17:40:39.000000000 +0000
|
|
+++ mail/app/nsMailApp.cpp
|
|
@@ -15,6 +15,26 @@
|
|
#include <sys/resource.h>
|
|
#include <unistd.h>
|
|
#endif
|
|
+/*
|
|
+ * On netbsd-4, ulimit -n is 64 by default; too few for us.
|
|
+ */
|
|
+static void netbsd_fixrlimit(void) {
|
|
+ struct rlimit rlp;
|
|
+ if (getrlimit(RLIMIT_NOFILE, &rlp) == -1) {
|
|
+ fprintf(stderr, "warning: getrlimit failed\n");
|
|
+ return;
|
|
+ }
|
|
+ if (rlp.rlim_cur >= 512)
|
|
+ return;
|
|
+ if (rlp.rlim_max < 512) {
|
|
+ fprintf(stderr, "warning: hard limit of 'ulimit -n' too low\n");
|
|
+ rlp.rlim_cur = rlp.rlim_max;
|
|
+ }
|
|
+ else
|
|
+ rlp.rlim_cur = 512;
|
|
+ if (setrlimit(RLIMIT_NOFILE, &rlp) == -1)
|
|
+ fprintf(stderr, "warning: setrlimit failed\n");
|
|
+ }
|
|
|
|
#ifdef XP_MACOSX
|
|
#include "MacQuirks.h"
|
|
@@ -218,6 +238,7 @@ FileExists(const char *path)
|
|
static nsresult
|
|
InitXPCOMGlue(const char *argv0, nsIFile **xreDirectory)
|
|
{
|
|
+ netbsd_fixrlimit();
|
|
char exePath[MAXPATHLEN];
|
|
|
|
nsresult rv = mozilla::BinaryPath::Get(argv0, exePath);
|