Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/sys/phoenix/fork.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/newlib/libc/sys/phoenix/fork.c b/newlib/libc/sys/phoenix/fork.c
index 696ce08c6..7e8d591c2 100644
--- a/newlib/libc/sys/phoenix/fork.c
+++ b/newlib/libc/sys/phoenix/fork.c
@@ -25,7 +25,10 @@
#include "syscall.h"
#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <sys/types.h>
+#include <unistd.h>
pid_t fork()
{
@@ -42,3 +45,26 @@ pid_t vfork()
{
return fork();
}
+
+int daemon(int nochdir, int noclose)
+{
+ switch(fork()) {
+ case -1:
+ return -1;
+ case 0:
+ break;
+ default:
+ exit(0);
+ }
+
+ if (setsid() == -1)
+ return -1;
+
+ if (nochdir == 0)
+ chdir("/");
+
+ if (noclose == 0)
+ freopen("/dev/null", "a+", stdout);
+
+ return 0;
+}