Create signal handles after fork() call, replace #3492.

This commit is contained in:
XMRig
2024-06-05 03:23:58 +07:00
parent 567956211d
commit f11f126d55

View File

@@ -61,13 +61,13 @@ int xmrig::App::exec()
return 2;
}
m_signals = std::make_shared<Signals>(this);
int rc = 0;
if (background(rc)) {
return rc;
}
m_signals = std::make_shared<Signals>(this);
rc = m_controller->init();
if (rc != 0) {
return rc;