ppsspp/Common/ThreadPools.h

16 lines
372 B
C
Raw Normal View History

2013-05-01 12:08:01 +00:00
#pragma once
#include "thread/threadpool.h"
2013-05-01 12:08:01 +00:00
class GlobalThreadPool {
public:
// will execute slices of "loop" from "lower" to "upper"
// in parallel on the global thread pool
2013-06-02 12:26:51 +00:00
static void Loop(const std::function<void(int,int)>& loop, int lower, int upper);
2013-05-01 12:08:01 +00:00
private:
2013-06-02 12:26:51 +00:00
static std::shared_ptr<ThreadPool> pool;
2013-05-01 12:08:01 +00:00
static bool initialized;
static void Inititialize();
};