mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-25 01:00:01 +00:00
16 lines
382 B
C
16 lines
382 B
C
|
#pragma once
|
||
|
|
||
|
#include "../native/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();
|
||
|
};
|