File: MultiThreading.cpp

package info (click to toggle)
ausaxs 1.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 72,592 kB
  • sloc: cpp: 49,853; ansic: 6,901; python: 730; makefile: 18
file content (13 lines) | stat: -rw-r--r-- 509 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: LGPL-3.0-or-later
// Author: Kristian Lytje

#include <utility/MultiThreading.h>
#include <settings/GeneralSettings.h>

using namespace ausaxs;

observer_ptr<BS::light_thread_pool> utility::multi_threading::get_global_pool() {
    // statics in functions are initialized on first call, so ok to use settings::general::threads here
    static std::unique_ptr<BS::light_thread_pool> pool = std::make_unique<BS::light_thread_pool>(settings::general::threads);
    return pool.get();
}