mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
16 lines
387 B
C++
16 lines
387 B
C++
#pragma once
|
|
|
|
#include "Common/Thread/ThreadPool.h"
|
|
|
|
class GlobalThreadPool {
|
|
public:
|
|
// will execute slices of "loop" from "lower" to "upper"
|
|
// in parallel on the global thread pool
|
|
static void Loop(const std::function<void(int,int)>& loop, int lower, int upper);
|
|
|
|
private:
|
|
static std::unique_ptr<ThreadPool> pool;
|
|
static std::once_flag init_flag;
|
|
static void Inititialize();
|
|
};
|