Provisional multithreading framework
This commit is contained in:
@@ -1 +1,23 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
#include "Fibers/JobQueue.h"
|
||||
|
||||
namespace Seele
|
||||
{
|
||||
struct GlobalFixture
|
||||
{
|
||||
GlobalFixture()
|
||||
{
|
||||
}
|
||||
~GlobalFixture()
|
||||
{
|
||||
}
|
||||
void setup()
|
||||
{
|
||||
Fibers::JobQueue::initJobQueues();
|
||||
}
|
||||
void teardown()
|
||||
{
|
||||
Fibers::JobQueue::cleanupJobQueues();
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user