mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Now using daemon() instead of fork() to run VDR in daemon mode
This commit is contained in:
parent
e83482945d
commit
6a8e2a99cb
@ -1505,3 +1505,6 @@ Alexander Rieger <Alexander.Rieger@inka.de>
|
|||||||
|
|
||||||
Philip Prindeville <philipp_subx@redfish-solutions.com>
|
Philip Prindeville <philipp_subx@redfish-solutions.com>
|
||||||
for updates to 'sources.conf'
|
for updates to 'sources.conf'
|
||||||
|
|
||||||
|
Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
||||||
|
for making VDR use use daemon() instead of fork() to run in daemon mode
|
||||||
|
3
HISTORY
3
HISTORY
@ -3886,6 +3886,7 @@ Video Disk Recorder Revision History
|
|||||||
- The 'sub-title' and 'bottom text' in the CAM menu can now consist of several lines.
|
- The 'sub-title' and 'bottom text' in the CAM menu can now consist of several lines.
|
||||||
- Improved the CAM enquiry menu.
|
- Improved the CAM enquiry menu.
|
||||||
|
|
||||||
2005-10-08: Version 1.3.35
|
2005-10-09: Version 1.3.35
|
||||||
|
|
||||||
- Updated 'sources.conf' (thanks to Philip Prindeville).
|
- Updated 'sources.conf' (thanks to Philip Prindeville).
|
||||||
|
- Now using daemon() instead of fork() to run VDR in daemon mode (thanks to Enrico Scholz).
|
||||||
|
10
vdr.c
10
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/vdr
|
* The project's page is at http://www.cadsoft.de/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.217 2005/09/24 13:27:26 kls Exp $
|
* $Id: vdr.c 1.218 2005/10/09 10:01:45 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -370,17 +370,11 @@ int main(int argc, char *argv[])
|
|||||||
// Daemon mode:
|
// Daemon mode:
|
||||||
|
|
||||||
if (DaemonMode) {
|
if (DaemonMode) {
|
||||||
pid_t pid = fork();
|
if (daemon(1, 0) == -1) {
|
||||||
if (pid < 0) {
|
|
||||||
fprintf(stderr, "%m\n");
|
fprintf(stderr, "%m\n");
|
||||||
esyslog("ERROR: %m");
|
esyslog("ERROR: %m");
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
if (pid != 0)
|
|
||||||
return 0; // initial program immediately returns
|
|
||||||
fclose(stdin);
|
|
||||||
fclose(stdout);
|
|
||||||
fclose(stderr);
|
|
||||||
}
|
}
|
||||||
else if (Terminal) {
|
else if (Terminal) {
|
||||||
// Claim new controlling terminal
|
// Claim new controlling terminal
|
||||||
|
Loading…
Reference in New Issue
Block a user