X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fdaemon.c;h=69c2330c0d767f3468e38a1e05f3c7ede6a40648;hb=d962efcd2c1f0a3abfb0c40e81e298d69a9757bd;hp=a4d0fd407c1865bb5b9bd0fcdf0100fa1854d915;hpb=ffe862e36b8b60b1197b223cec0b78482cbd7763;p=yaz-moved-to-github.git diff --git a/src/daemon.c b/src/daemon.c index a4d0fd4..69c2330 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -33,6 +33,10 @@ #include #endif +#if HAVE_SYS_PRCTL_H +#include +#endif + #include #include #include @@ -199,6 +203,13 @@ int yaz_daemon(const char *progname, yaz_log(YLOG_FATAL|YLOG_ERRNO, "setuid"); exit(1); } + /* Linux don't produce core dumps evern if the limit is right and + files are writable.. This fixes this. See prctl(2) */ +#if HAVE_SYS_PRCTL_H +#ifdef PR_SET_DUMPABLE + prctl(PR_SET_DUMPABLE, 1, 0, 0); +#endif +#endif } if (flags & YAZ_DAEMON_FORK)