[process] Remove useless FIXME
[mono.git] / mono / metadata / w32process-unix.c
index ba6b3038f1b27202002edeb6ff93bf8ab51b6d4f..f9072f2e8da1aefaa0510a43c6898bf6b10e73b1 100644 (file)
@@ -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);