Added pthread entrypoint for epoch manager.

This commit is contained in:
Michael Mueller
2024-02-13 19:43:45 +01:00
parent 5f2cba19d8
commit 4b13aa18e7

View File

@@ -113,6 +113,11 @@ public:
*/
void enter_epoch_periodically();
static void *enter(void *args) { EpochManager *mgr = static_cast<EpochManager *>(args);
mgr->enter_epoch_periodically();
return nullptr;
}
/**
* Reclaims all garbage, mainly right before shut down tasking.
*/