Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable Core Dump on webOS #382

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,27 @@
#include "util/path.h"
#include "logging.h"

#if defined(TARGET_WEBOS) && !defined(DEBUG)

#include <sys/resource.h>

#endif

static int settings_load(app_settings_t *settings);

int main(int argc, char *argv[]) {
#if TARGET_WEBOS
#ifdef TARGET_WEBOS
if (getenv("EGL_PLATFORM") == NULL) {
setenv("EGL_PLATFORM", "wayland", 0);
}
if (getenv("XDG_RUNTIME_DIR") == NULL) {
setenv("XDG_RUNTIME_DIR", "/tmp/xdg", 0);
}
#ifndef DEBUG
// Don't generate core dumps in release builds
struct rlimit rlim = {0, 0};
setrlimit(RLIMIT_CORE, &rlim);
#endif
#endif
app_t app;
int ret = app_init(&app, settings_load, argc, argv);
Expand Down