in src/backup.cc [28:39]
void Backup::Process() {
if (finished && !queue.empty()) {
return CleanQueue();
}
while (inited && !locked && !queue.empty()) {
std::unique_ptr<Call> call(queue.front());
queue.pop();
call->callback(call->baton);
}
}