From: wolf Date: Fri, 27 Sep 2002 21:31:53 +0000 (+0000) Subject: getpid seems not to be in std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d36277323f351bba4cd6daf2c88a894f9e6a474c;p=dealii-svn.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"); };