summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-29 15:19:21 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-29 15:19:21 +0200
commita8e3580be61f582aad05d3154896e73b0c414efb (patch)
tree19e77a51221061319fb07e9cdfb481f0bd0d96b1 /src/gui.c
parent630a730f9b91511f8da556dd5dc0d15f0a23f46a (diff)
updated for version 7.3.1266v7.3.1266
Problem: QNX: GUI fails to start. Solution: Remove the QNX-specific #ifdef. (Sean Boudreau)
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui.c b/src/gui.c
index 6b7806c6f6..06a99e6cba 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -206,12 +206,6 @@ gui_attempt_start()
static void
gui_do_fork()
{
-#ifdef __QNXNTO__
- procmgr_daemon(0, PROCMGR_DAEMON_KEEPUMASK | PROCMGR_DAEMON_NOCHDIR |
- PROCMGR_DAEMON_NOCLOSE | PROCMGR_DAEMON_NODEVNULL);
- gui_attempt_start();
- return;
-#else
int pipefd[2]; /* pipe between parent and child */
int pipe_error;
int status;
@@ -316,7 +310,6 @@ gui_do_fork()
/* If we failed to start the GUI, exit now. */
if (!gui.in_use)
exit(1);
-#endif
}
/*