Forward declare tLogPop in 6_2.

This commit is contained in:
negoyal 2019-11-20 10:43:24 -08:00
parent 2c227a7049
commit b6f35c573e
1 changed files with 2 additions and 0 deletions

View File

@ -943,6 +943,8 @@ ACTOR Future<Void> updatePersistentData( TLogData* self, Reference<LogData> logD
return Void();
}
ACTOR Future<Void> tLogPop( TLogData* self, TLogPopRequest req, Reference<LogData> logData );
// This function (and updatePersistentData, which is called by this function) run at a low priority and can soak up all CPU resources.
// For this reason, they employ aggressive use of yields to avoid causing slow tasks that could introduce latencies for more important
// work (e.g. commits).