ppsspp/Common/ThreadPools.h
2013-06-02 23:46:03 +02:00

16 lines
372 B
C++

#pragma once
#include "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::shared_ptr<ThreadPool> pool;
static bool initialized;
static void Inititialize();
};