From f8d29f6f791a453e2faca2fc48bf475208565bbf Mon Sep 17 00:00:00 2001 From: Konstantin Osipov <kostja.osipov@gmail.com> Date: Thu, 13 Oct 2011 18:16:26 +0400 Subject: [PATCH] A follow up for the patch for Bug#750658. Check that --background actually works, fix the coding style. --- core/tarantool.m | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/core/tarantool.m b/core/tarantool.m index 46a513a8c2..8ecdd33694 100644 --- a/core/tarantool.m +++ b/core/tarantool.m @@ -316,32 +316,32 @@ create_pid(void) fclose(f); } -/** Run in the background. - */ -static void background() +/** Run in the background. */ +static void +background() { - switch (fork()) { - case -1: - goto error; - case 0: /* child */ - break; - default: /* parent */ - exit(EXIT_SUCCESS); - } - - if (setsid() == -1) - goto error; - - /* - * Prints to stdout on failure, so got to be done before we - * close it. - */ - create_pid(); - - close(STDIN_FILENO); - close(STDOUT_FILENO); - close(STDERR_FILENO); + switch (fork()) { + case -1: + goto error; + case 0: /* child */ + break; + default: /* parent */ + exit(EXIT_SUCCESS); + } + + if (setsid() == -1) + goto error; + + /* + * Prints to stdout on failure, so got to be done before + * we close it. + */ + create_pid(); + close(STDIN_FILENO); + close(STDOUT_FILENO); + close(STDERR_FILENO); + return; error: exit(EXIT_FAILURE); } -- GitLab