| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/devel/electron19/files/ |
Upload File : |
--- electron/shell/browser/relauncher_linux.cc.orig 2021-01-22 23:55:24 UTC
+++ electron/shell/browser/relauncher_linux.cc
@@ -6,8 +6,10 @@
#include <fcntl.h>
#include <signal.h>
+#if !defined(__FreeBSD__)
#include <sys/prctl.h>
#include <sys/signalfd.h>
+#endif
#include "base/files/file_util.h"
#include "base/files/scoped_file.h"
@@ -26,6 +28,10 @@ void RelauncherSynchronizeWithParent() {
base::ScopedFD relauncher_sync_fd(kRelauncherSyncFD);
static const auto signum = SIGUSR2;
+#if defined(__FreeBSD__)
+ PLOG(ERROR) << "signalfd & prctl";
+ fprintf(stderr, "Not Implemented signalfd & prctl in atom/browser/relauncher_linux.cc");
+#else
// send signum to current process when parent process ends.
if (HANDLE_EINTR(prctl(PR_SET_PDEATHSIG, signum)) != 0) {
PLOG(ERROR) << "prctl";
@@ -50,6 +56,7 @@ void RelauncherSynchronizeWithParent() {
// Wait for the parent to exit
parentWaiter.Wait();
+#endif
}
int LaunchProgram(const StringVector& relauncher_args,