From: wolf Date: Thu, 26 Sep 2002 00:21:26 +0000 (+0000) Subject: Also write out errno in case of an error. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9776f310387e20c8662ef4d64584eaabab4d1711;p=dealii-svn.git Also write out errno in case of an error. git-svn-id: https://svn.dealii.org/trunk@6524 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/hsl/source/detached_ma27.cc b/deal.II/contrib/hsl/source/detached_ma27.cc index 6cacf54631..3a207d2768 100644 --- a/deal.II/contrib/hsl/source/detached_ma27.cc +++ b/deal.II/contrib/hsl/source/detached_ma27.cc @@ -40,6 +40,7 @@ void get (T *t, const size_t N, const char */*debug_info*/) if (ret < 0) { std::cerr << "------ error " << ret << " on client side!" + << " errno=" << errno << std::endl; abort (); } diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 70d84db44d..bfdccc7947 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -247,6 +247,7 @@ struct SparseDirectMA27::DetachedModeData if (ret < 0) { std::cerr << "****** error " << ret << " on server side!" + << " errno=" << errno << std::endl; abort (); }