--- fuse-2.7.3.orig/lib/helper.c 2008-11-22 03:25:11.000000000 +0100 +++ fuse-2.7.3/lib/helper.c 2008-11-22 04:06:35.000000000 +0100 @@ -178,13 +178,41 @@ 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; } > [no description]
aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/fc660c/actuation_point.c
blob: 5f4cb16f40b198220b9c71f66f1ff7567a92a283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87