From: Ludovic Henry Date: Wed, 14 Dec 2016 02:44:27 +0000 (-0500) Subject: [process] Remove useless FIXME X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=5294685b97846d3e63ac082239096e52ff3f5366 [process] Remove useless FIXME --- diff --git a/mono/metadata/w32process-unix.c b/mono/metadata/w32process-unix.c index ba6b3038f1b..f9072f2e8da 100644 --- a/mono/metadata/w32process-unix.c +++ b/mono/metadata/w32process-unix.c @@ -1959,10 +1959,6 @@ process_create (const gunichar2 *appname, const gunichar2 *cmdline, mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: new process startup not synchronized. We may not notice if the newly created process exits immediately.", __func__); } -#if HAVE_SIGACTION - /* FIXME: block SIGCHLD */ -#endif - switch (pid = fork ()) { case -1: /* Error */ { SetLastError (ERROR_OUTOFMEMORY); @@ -2064,10 +2060,6 @@ process_create (const gunichar2 *appname, const gunichar2 *cmdline, } } -#if HAVE_SIGACTION - /* FIXME: unblock SIGCHLD */ -#endif - if (startup_pipe [1] != -1) { /* Write 1 byte, doesn't matter what */ ssize_t _i G_GNUC_UNUSED = write (startup_pipe [1], startup_pipe, 1);