From: Wolfgang Bangerth Date: Fri, 27 Sep 2002 21:31:53 +0000 (+0000) Subject: getpid seems not to be in std:: X-Git-Tag: v8.0.0~17437 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f48e7bd152339e462147f93dce75049fe6b5fc5d;p=dealii.git getpid seems not to be in std:: git-svn-id: https://svn.dealii.org/trunk@6548 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index f0625e5e7a..599dfa1fcd 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -400,7 +400,7 @@ SparseDirectMA27::initialize (const SparsityPattern &sp) // process was somehow // terminated without sending // him this information - const pid_t parent_pid = std::getpid(); + const pid_t parent_pid = getpid(); detached_mode_data->put (&parent_pid, 1, "parent_pid"); };