Skip to content
Snippets Groups Projects
Commit bbb37ae9 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Runtime: Use currentRuntime instead of lastRuntime

parent ddde4e11
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,6 @@
std::mutex Runtime::currentRuntimeMutex;
Runtime* Runtime::currentRuntime;
Runtime* Runtime::lastRuntime;
thread_local unsigned int Runtime::seed;
thread_local workerid_t Runtime::workerId;
RuntimeStrategy& Runtime::DEFAULT_STRATEGY = WsStrategy::INSTANCE;
......@@ -38,7 +37,7 @@ Runtime::Runtime(workerid_t workerCount, RuntimeStrategy& strategy) : workerCoun
{
std::lock_guard<std::mutex> lock(currentRuntimeMutex);
if (currentRuntime != nullptr) {
exit(EXIT_FAILURE);
DIE_MSG("There is already a runtime active");
}
currentRuntime = this;
}
......@@ -66,7 +65,6 @@ Runtime::Runtime(workerid_t workerCount, RuntimeStrategy& strategy) : workerCoun
}
#ifdef EMPER_STATS
lastRuntime = this;
int res = std::atexit(&printLastRuntimeStats);
if (res) {
DIE_MSG("could not register printStats() with at_exit()");
......@@ -128,9 +126,7 @@ void Runtime::printStats() {
}
void Runtime::printLastRuntimeStats() {
if (!lastRuntime)
DIE_MSG("lastRuntime not set when invoking pinrtLastRuntimeStats");
lastRuntime->printStats();
assert(currentRuntime);
currentRuntime->printStats();
}
......@@ -42,7 +42,6 @@ private:
static RuntimeStrategy& DEFAULT_STRATEGY;
static Runtime* lastRuntime;
static void printLastRuntimeStats();
protected:
......@@ -105,7 +104,11 @@ public:
inline ContextManager& getContextManager() {
return contextManager;
}
inline RuntimeStrategy& getStrategy() {
return strategy;
}
void waitUntilFinished();
void printStats();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment