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

Remove debug code in Runtime constructor

parent 388b9fc1
No related branches found
No related tags found
No related merge requests found
...@@ -68,9 +68,7 @@ Runtime::Runtime(workerid_t workerCount, RuntimeStrategy& strategy) : workerCoun ...@@ -68,9 +68,7 @@ Runtime::Runtime(workerid_t workerCount, RuntimeStrategy& strategy) : workerCoun
#ifdef EMPER_STATS #ifdef EMPER_STATS
lastRuntime = this; lastRuntime = this;
int res = std::atexit(&printLastRuntimeStats); int res = std::atexit(&printLastRuntimeStats);
// For testing purposes. if (res) {
res = 1;
if (!res) {
DIE_MSG("could not register printStats() with at_exit()"); DIE_MSG("could not register printStats() with at_exit()");
} }
#endif #endif
......
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