summaryrefslogtreecommitdiff
path: root/meta-pkgs/boost/patches/patch-aq
diff options
context:
space:
mode:
Diffstat (limited to 'meta-pkgs/boost/patches/patch-aq')
-rw-r--r--meta-pkgs/boost/patches/patch-aq23
1 files changed, 21 insertions, 2 deletions
diff --git a/meta-pkgs/boost/patches/patch-aq b/meta-pkgs/boost/patches/patch-aq
index b51d3aeae11..a2a376f3b5e 100644
--- a/meta-pkgs/boost/patches/patch-aq
+++ b/meta-pkgs/boost/patches/patch-aq
@@ -1,4 +1,4 @@
-$NetBSD: patch-aq,v 1.6 2010/11/26 20:47:01 adam Exp $
+$NetBSD: patch-aq,v 1.7 2014/05/13 18:48:49 ryoon Exp $
--- boost/test/impl/execution_monitor.ipp.orig 2009-11-28 09:19:18.000000000 +0000
+++ boost/test/impl/execution_monitor.ipp
@@ -20,7 +20,26 @@ $NetBSD: patch-aq,v 1.6 2010/11/26 20:47:01 adam Exp $
switch( m_sig_info->si_code ) {
case SI_USER:
report_error( execution_exception::system_error,
-@@ -608,6 +610,7 @@ system_signal_exception::report() const
+@@ -341,14 +343,18 @@ system_signal_exception::report() const
+ report_error( execution_exception::system_error,
+ "signal: the expiration of a timer set by timer_settimer()" );
+ break;
++#if defined(SI_ASYNCIO)
+ case SI_ASYNCIO:
+ report_error( execution_exception::system_error,
+ "signal: generated by the completion of an asynchronous I/O request" );
+ break;
++#endif
++#if defined(SI_MESGQ)
+ case SI_MESGQ:
+ report_error( execution_exception::system_error,
+ "signal: generated by the the arrival of a message on an empty message queue" );
+ break;
++#endif
+ default:
+ break;
+ }
+@@ -608,6 +614,7 @@ system_signal_exception::report() const
default:
report_error( execution_exception::system_error, "unrecognized signal" );
}