Windows-specific Ctrl+Break signal. Since it's neither ANSI, nor any other,
it's put under 'odd signals' category.


-- 
You received this message because you are subscribed to the Google Groups 
"prosody-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to prosody-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/prosody-dev/1a426026a4e0056a16bb.1678299675%40EI08_MatisseX.
# HG changeset patch
# User Vitaly Orekhov <vkvo2...@vivaldi.net>
# Date 1678299637 -10800
#      Wed Mar 08 21:20:37 2023 +0300
# Node ID 1a426026a4e0056a16bbac9c2b3c2667e88ef0c3
# Parent  5a644645e80cefe411cb761b92211b73d4a7f18a
util.signal: Add SIGBREAK signal

Windows-specific Ctrl+Break signal. Since it's neither ANSI, nor any other,
it's put under 'odd signals' category.

diff -r 5a644645e80c -r 1a426026a4e0 util-src/signal.c
--- a/util-src/signal.c	Thu Mar 02 02:52:07 2023 +0300
+++ b/util-src/signal.c	Wed Mar 08 21:20:37 2023 +0300
@@ -156,6 +156,9 @@
 #ifdef SIGSYS
 	{"SIGSYS", SIGSYS},
 #endif
+#ifdef SIGBREAK
+	{"SIGBREAK", SIGBREAK}, /* Windows-specific Ctrl+Break */
+#endif
 	{NULL, 0}
 };
 

Reply via email to