mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Minix does not have setrlimit().
This commit is contained in:
parent
c26b526dcd
commit
c3aa1a61e6
@ -277,6 +277,11 @@ static int start_child_process(const char* cmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int start_child_process_with_core(const char* cmd) {
|
static int start_child_process_with_core(const char* cmd) {
|
||||||
|
#ifndef __minix
|
||||||
|
/*
|
||||||
|
* Minix does not have setrlimit() so we disable everything as by default it
|
||||||
|
* will dump core.
|
||||||
|
*/
|
||||||
struct rlimit r;
|
struct rlimit r;
|
||||||
errno = 0;
|
errno = 0;
|
||||||
|
|
||||||
@ -292,14 +297,16 @@ static int start_child_process_with_core(const char* cmd) {
|
|||||||
E_WARNING(E_STRLOC ": setrlimit() failed with '%s'\n", strerror(errno));
|
E_WARNING(E_STRLOC ": setrlimit() failed with '%s'\n", strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
int ret = start_child_process(cmd);
|
int ret = start_child_process(cmd);
|
||||||
|
|
||||||
|
#ifndef __minix
|
||||||
r.rlim_cur = old;
|
r.rlim_cur = old;
|
||||||
if(setrlimit(RLIMIT_CORE, &r) == -1) {
|
if(setrlimit(RLIMIT_CORE, &r) == -1) {
|
||||||
E_WARNING(E_STRLOC ": setrlimit() failed with '%s'\n", strerror(errno));
|
E_WARNING(E_STRLOC ": setrlimit() failed with '%s'\n", strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user