1
0
mirror of https://git.openwrt.org/feed/routing.git synced 2024-06-18 21:23:57 +02:00
openwrt-routing/vis/patches/0001-Allow-one-to-disable-forking-to-background-in-debug_.patch
Sven Eckelmann aa050789fe vis: Convert to procd based init script
The legacy init script had various problems in comparison with procd based
init scripts. It wasn't able to correctly track the running process
instance and thus could:

* accidentally kill another (non init controlled) daemon instance when stop
  is used
* not restart the daemon depending on config changes when reload is used
* not automatically start/restart daemon when the used netdev was
  created/recreated

The information about a running instance and its parameters can now be
handled by a global controller (procd). The process must not fork anymore
and leave the control to procd. The process with its parameters can then be
used by procd to trigger the stop/start of the process at the right time.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
2019-07-28 00:17:42 +02:00

57 lines
1.5 KiB
Diff

From: Sven Eckelmann <sven@narfation.org>
Date: Sun, 1 Dec 2013 14:39:00 +0100
Subject: Allow one to disable forking to background in debug_mode 0
---
posix/init.c | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
--- a/vis.c
+++ b/vis.c
@@ -58,6 +58,7 @@ buffer_t *fillme = NULL;
static int8_t stop;
uint8_t debug_level = 0;
+static int no_detach = 0;
formats selected_formats = dot_draw;
@@ -716,6 +717,7 @@ void print_usage() {
printf( "Usage: vis <interface(s)> \n" );
printf( "\t-j output mesh topology as json on port %d\n", JSON_PORT );
printf( "\t-d debug level\n" );
+ printf( "\t-D run in foreground\n" );
printf( "\t-h help\n" );
printf( "\t-v Version\n\n" );
printf( "Olsrs3d / Meshs3d is an application to visualize a mesh network.\nIt is a part of s3d, have a look at s3d.berlios.de\n\n" );
@@ -736,7 +738,7 @@ int main( int argc, char **argv ) {
fd_set wait_sockets, tmp_wait_sockets;
- while ( ( optchar = getopt ( argc, argv, "jd:hv" ) ) != -1 ) {
+ while ( ( optchar = getopt ( argc, argv, "jd:hvD" ) ) != -1 ) {
switch( optchar ) {
@@ -771,6 +773,11 @@ int main( int argc, char **argv ) {
selected_formats |= json;
found_args++;
break;
+
+ case 'D':
+ no_detach = 1;
+ found_args++;
+ break;
default:
print_usage();
@@ -889,7 +896,7 @@ int main( int argc, char **argv ) {
/* daemonize */
- if ( debug_level == 0 ) {
+ if ( debug_level == 0 && !no_detach) {
if ( my_daemon() < 0 )
exit_error( "Error - can't fork to background: %s\n", strerror(errno) );