Merge pull request #17975 from Uukrull/coredump
This commit is contained in:
commit
20c932e236
|
@ -49,6 +49,10 @@
|
||||||
#include <process.h>
|
#include <process.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(WEBOS)
|
||||||
|
#include <sys/resource.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -5893,6 +5897,11 @@ int rarch_main(int argc, char *argv[], void *data)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(WEBOS)
|
||||||
|
struct rlimit limit = {0, 0};
|
||||||
|
setrlimit(RLIMIT_CORE, &limit);
|
||||||
|
#endif
|
||||||
|
|
||||||
rtime_init();
|
rtime_init();
|
||||||
|
|
||||||
#if defined(ANDROID)
|
#if defined(ANDROID)
|
||||||
|
|
Loading…
Reference in New Issue