From 26f2581453708f8db062380187eff7375abe3205 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 24 Jan 2003 16:09:29 +0000 Subject: [PATCH] Support detection of CPUs on AIX. git-svn-id: https://svn.dealii.org/trunk@6958 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/multithread_info.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/base/source/multithread_info.cc b/deal.II/base/source/multithread_info.cc index 9161a0914a..5236d58d79 100644 --- a/deal.II/base/source/multithread_info.cc +++ b/deal.II/base/source/multithread_info.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002 by the deal authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 by the deal authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -19,7 +19,7 @@ # include #endif -#if defined(__sun__) || defined(__osf__) +#if defined(__sun__) || defined(__osf__) || defined(_AIX) # include #endif @@ -56,7 +56,7 @@ unsigned int MultithreadInfo::get_n_cpus() } -#elif defined(__sun__) || defined(__osf__) +#elif defined(__sun__) || defined(__osf__) || defined(_AIX) unsigned int MultithreadInfo::get_n_cpus() -- 2.39.5