Port ospf6d to sigevent and rename signal handling functions in vtysh not to
conflict the ones in lib/sigevent.c. Fixes compiling with --disable-shared.
diff --git a/vtysh/vtysh_main.c b/vtysh/vtysh_main.c
index e862efd..223f0c6 100644
--- a/vtysh/vtysh_main.c
+++ b/vtysh/vtysh_main.c
@@ -99,9 +99,10 @@
}
}
-/* Signale wrapper. */
+/* Signale wrapper for vtysh. We don't use sigevent because
+ * vtysh doesn't use threads. TODO */
RETSIGTYPE *
-signal_set (int signo, void (*func)(int))
+vtysh_signal_set (int signo, void (*func)(int))
{
int ret;
struct sigaction sig;
@@ -124,11 +125,11 @@
/* Initialization of signal handles. */
void
-signal_init ()
+vtysh_signal_init ()
{
- signal_set (SIGINT, sigint);
- signal_set (SIGTSTP, sigtstp);
- signal_set (SIGPIPE, SIG_IGN);
+ vtysh_signal_set (SIGINT, sigint);
+ vtysh_signal_set (SIGTSTP, sigtstp);
+ vtysh_signal_set (SIGPIPE, SIG_IGN);
}
/* Help information display. */
@@ -243,7 +244,7 @@
line_read = NULL;
/* Signal and others. */
- signal_init ();
+ vtysh_signal_init ();
/* Make vty structure and register commands. */
vtysh_init_vty ();