summaryrefslogtreecommitdiff
path: root/ace/os_include/os_signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/os_include/os_signal.h')
-rw-r--r--ace/os_include/os_signal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/os_include/os_signal.h b/ace/os_include/os_signal.h
index a9f3bee4458..5e0206abefa 100644
--- a/ace/os_include/os_signal.h
+++ b/ace/os_include/os_signal.h
@@ -161,11 +161,11 @@ extern "C"
typedef void (__cdecl * __sighandler_t)(int);
#endif
-#if defined (ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES) || defined (ACE_HAS_LYNXOS50_SIGNALS)
- // Prototypes for both signal() and struct sigaction are consistent..
+#if defined (ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES)
+ // Prototypes for both signal() and struct sigaction are consistent..
typedef void (*ACE_SignalHandler)(int);
typedef void (*ACE_SignalHandlerV)(int);
-#elif defined (ACE_HAS_LYNXOS_SIGNALS) || defined (ACE_HAS_TANDEM_SIGNALS)
+#elif defined (ACE_HAS_LYNXOS4_SIGNALS) || defined (ACE_HAS_TANDEM_SIGNALS)
typedef void (*ACE_SignalHandler)(...);
typedef void (*ACE_SignalHandlerV)(...);
#elif defined (ACE_HAS_SVR4_SIGNAL_T)