8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 473f086 commit 7d54d85Copy full SHA for 7d54d85
src/node.cc
@@ -692,6 +692,12 @@ const char *signo_string(int signo) {
692
# endif
693
#endif
694
695
+#ifdef SIGINFO
696
+# if !defined(SIGPWR) || SIGINFO != SIGPWR
697
+ SIGNO_CASE(SIGINFO);
698
+# endif
699
+#endif
700
+
701
#ifdef SIGSYS
702
SIGNO_CASE(SIGSYS);
703
src/node_constants.cc
@@ -716,6 +716,10 @@ void DefineSignalConstants(Local<Object> target) {
716
NODE_DEFINE_CONSTANT(target, SIGPWR);
717
718
719
720
+ NODE_DEFINE_CONSTANT(target, SIGINFO);
721
722
723
724
NODE_DEFINE_CONSTANT(target, SIGSYS);
725