summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2006-09-29 19:43:32 +0000
committerSteve Huston <shuston@riverace.com>2006-09-29 19:43:32 +0000
commiteb8ff7590ad900e649016fcc36c035b02822a640 (patch)
treeaf3d564e91dd880c474a71fefaeebf36442d9eb7
parentcd609a497c91e68c4d3e1c944764e4076fa04896 (diff)
downloadATCD-eb8ff7590ad900e649016fcc36c035b02822a640.tar.gz
ChangeLogTag:Fri Sep 29 18:54:29 UTC 2006 Steve Huston <shuston@riverace.com>
-rw-r--r--ACE/ChangeLog7
-rw-r--r--ACE/ace/OS_NS_signal.inl2
2 files changed, 8 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 9dbbc42cfd9..e8d6156ba40 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,10 @@
+Fri Sep 29 18:54:29 UTC 2006 Steve Huston <shuston@riverace.com>
+
+ * ace/OS_NS_signal.inl (sigaction): In the !ACE_HAS_SIGACTION_CONSTP2
+ case, use ACE_SIGACTION instead of "struct sigaction" to pick up
+ the funky HP hack. Also see:
+ Mon Jan 23 22:08:56 UTC 2006 Steve Huston <shuston@riverace.com>
+
Fri Sep 29 10:00:04 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Web_Crawler/Web_Crawler.mpc:
diff --git a/ACE/ace/OS_NS_signal.inl b/ACE/ace/OS_NS_signal.inl
index 9acf54122fe..172bf82c7eb 100644
--- a/ACE/ace/OS_NS_signal.inl
+++ b/ACE/ace/OS_NS_signal.inl
@@ -66,7 +66,7 @@ sigaction (int signum, const ACE_SIGACTION *nsa, ACE_SIGACTION *osa)
ACE_NOTSUP_RETURN (-1);
#elif !defined (ACE_HAS_SIGACTION_CONSTP2)
ACE_OSCALL_RETURN (::sigaction (signum,
- const_cast<struct sigaction*> (nsa),
+ const_cast<ACE_SIGACTION*> (nsa),
osa),
int, -1);
#else