Begin implementation of the STABLE operation

This commit is contained in:
Vitaliy Filippov
2019-11-10 14:37:45 +03:00
parent 7aabe11ef9
commit 890335bff6
4 changed files with 65 additions and 3 deletions
+2 -2
View File
@@ -81,7 +81,7 @@ void blockstore::handle_event(ring_data_t *data)
}
else if ((op->flags & OP_TYPE_MASK) == OP_STABLE)
{
handle_stable_event(data, op);
}
}
}
@@ -169,7 +169,7 @@ void blockstore::loop()
}
else if ((op->flags & OP_TYPE_MASK) == OP_STABLE)
{
dequeue_op = dequeue_stable(op);
}
if (dequeue_op)
{