From 38f5f8d8f15956869f7b3b6f900e14f74ff1d1a4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 19 May 2000 16:02:55 +0000 Subject: [PATCH] Change ACE_Thread* to Threads::* git-svn-id: https://svn.dealii.org/trunk@2907 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_matrix.templates.h | 8 ++++---- deal.II/lac/include/lac/sparse_vanka.templates.h | 4 ++-- deal.II/lac/include/lac/swappable_vector.h | 2 +- deal.II/lac/include/lac/swappable_vector.templates.h | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_matrix.templates.h b/deal.II/lac/include/lac/sparse_matrix.templates.h index 2268ff33b9..8244dba032 100644 --- a/deal.II/lac/include/lac/sparse_matrix.templates.h +++ b/deal.II/lac/include/lac/sparse_matrix.templates.h @@ -207,7 +207,7 @@ SparseMatrix::vmult (Vector& dst, const Vector& { const unsigned int n_threads = multithread_info.n_default_threads; - ACE_Thread_Manager thread_manager; + Threads::ThreadManager thread_manager; for (unsigned int i=0; i:: @@ -356,7 +356,7 @@ SparseMatrix::matrix_norm_square (const Vector& v) const // space for the norms of // the different parts vector partial_sums (n_threads, 0); - ACE_Thread_Manager thread_manager; + Threads::ThreadManager thread_manager; // spawn some jobs... for (unsigned int i=0; i::matrix_scalar_product (const Vector& u, // space for the norms of // the different parts vector partial_sums (n_threads, 0); - ACE_Thread_Manager thread_manager; + Threads::ThreadManager thread_manager; // spawn some jobs... for (unsigned int i=0; i::residual (Vector &dst, // space for the square norms of // the different parts vector partial_norms (n_threads, 0); - ACE_Thread_Manager thread_manager; + Threads::ThreadManager thread_manager; for (unsigned int i=0; i:: diff --git a/deal.II/lac/include/lac/sparse_vanka.templates.h b/deal.II/lac/include/lac/sparse_vanka.templates.h index 204e1bc99a..bb77852398 100644 --- a/deal.II/lac/include/lac/sparse_vanka.templates.h +++ b/deal.II/lac/include/lac/sparse_vanka.templates.h @@ -111,7 +111,7 @@ SparseVanka::compute_inverses () FunPtr fun_ptr = &SparseVanka::compute_inverses; // Now spawn the threads - ACE_Thread_Manager thread_manager; + Threads::ThreadManager thread_manager; for (unsigned int i=0; i::operator() (Vector &dst, // otherwise: blocking requested { #ifdef DEAL_II_USE_MT - ACE_Thread_Manager thread_manager; + Threads::ThreadManager thread_manager; for (unsigned int block=0; block:: diff --git a/deal.II/lac/include/lac/swappable_vector.h b/deal.II/lac/include/lac/swappable_vector.h index 7b67b23f82..664d300bea 100644 --- a/deal.II/lac/include/lac/swappable_vector.h +++ b/deal.II/lac/include/lac/swappable_vector.h @@ -255,7 +255,7 @@ class SwappableVector : public Vector * is used to spawn threads in * #alert# detached. */ - static ACE_Thread_Manager thread_manager; + static Threads::ThreadManager thread_manager; #endif /** diff --git a/deal.II/lac/include/lac/swappable_vector.templates.h b/deal.II/lac/include/lac/swappable_vector.templates.h index 5fa66681dc..8cc77a9674 100644 --- a/deal.II/lac/include/lac/swappable_vector.templates.h +++ b/deal.II/lac/include/lac/swappable_vector.templates.h @@ -23,7 +23,7 @@ #ifdef DEAL_II_USE_MT // allocate static variable template -ACE_Thread_Manager SwappableVector::thread_manager; +Threads::ThreadManager SwappableVector::thread_manager; #endif -- 2.39.5