Redis-like assert function. * * The macro `RedisModule_Assert(expression)` is recommended, rather than * calling this function directly. * * A failed assertion will shut down the server and produce logging information * that looks identical to information generated by Redis itself. */
| 5182 | * that looks identical to information generated by Redis itself. |
| 5183 | */ |
| 5184 | void RM__Assert(const char *estr, const char *file, int line) { |
| 5185 | _serverAssert(estr, file, line); |
| 5186 | } |
| 5187 | |
| 5188 | /* Allows adding event to the latency monitor to be observed by the LATENCY |
| 5189 | * command. The call is skipped if the latency is smaller than the configured |
nothing calls this directly
no test coverage detected