mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 01:02:49 +02:00
f2732edc60
changes: - latest fuse 2.8.3 - includes now the kernel module for kernel 2.4 - builds parallel - fuse-utils includes now ulockmgr_server fuse24 should be deleted from trunk. bud git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20190 3c298f89-4303-0410-b956-a3cf2f4a3e73
48 lines
1.0 KiB
Diff
48 lines
1.0 KiB
Diff
diff -Nurp fuse-2.8.1.orig/lib/helper.c fuse-2.8.1/lib/helper.c
|
|
--- fuse-2.8.1.orig/lib/helper.c 2009-06-18 13:14:09.000000000 +0200
|
|
+++ fuse-2.8.1/lib/helper.c 2009-12-17 01:11:32.773356000 +0100
|
|
@@ -180,13 +180,41 @@ err:
|
|
int fuse_daemonize(int foreground)
|
|
{
|
|
int res;
|
|
+ int fd;
|
|
|
|
if (!foreground) {
|
|
- res = daemon(0, 0);
|
|
+ /* uClibc daemon() has problems with pthread and friends */
|
|
+ /* workaround from http://www.mail-archive.com/uclibc@uclibc.org/msg01073.html */
|
|
+ /* res = daemon(0, 0); */
|
|
+ switch (res = fork()) {
|
|
+ case -1:
|
|
+ return(-1);
|
|
+ case 0:
|
|
+ break;
|
|
+ default:
|
|
+ _exit(0);
|
|
+ }
|
|
+
|
|
if (res == -1) {
|
|
- perror("fuse: failed to daemonize program\n");
|
|
+ perror("fuse: failed to fork()\n");
|
|
return -1;
|
|
}
|
|
+
|
|
+ res=setsid();
|
|
+
|
|
+ if (res == -1) {
|
|
+ perror("fuse: failed to setsid()\n");
|
|
+ }
|
|
+
|
|
+ chdir("/");
|
|
+
|
|
+ if (fd = open("/dev/null", O_RDWR, 0) != -1) {
|
|
+ dup2(fd, STDIN_FILENO);
|
|
+ dup2(fd, STDOUT_FILENO);
|
|
+ dup2(fd, STDERR_FILENO);
|
|
+ if (fd > 2)
|
|
+ close(fd);
|
|
+ }
|
|
}
|
|
return 0;
|
|
}
|