| 4748 | } |
| 4749 | |
| 4750 | void lfenceCommand(client *c) { |
| 4751 | c->mvccCheckpoint = getMvccTstamp(); |
| 4752 | addReply(c, shared.ok); |
| 4753 | } |
| 4754 | |
| 4755 | void rejectCommandFormat(client *c, const char *fmt, ...) { |
| 4756 | if (c->cmd) c->cmd->rejected_calls++; |
nothing calls this directly
no test coverage detected