MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rioGetReadError

Function rioGetReadError

app/redis-6.2.6/src/rio.h:146–148  ·  view source on GitHub ↗

This function allows to know if there was a read error in any past * operation, since the rio stream was created or since the last call * to rioClearError(). */

Source from the content-addressed store, hash-verified

144 * operation, since the rio stream was created or since the last call
145 * to rioClearError(). */
146static inline int rioGetReadError(rio *r) {
147 return (r->flags & RIO_FLAG_READ_ERROR) != 0;
148}
149
150/* Like rioGetReadError() but for write errors. */
151static inline int rioGetWriteError(rio *r) {

Callers 3

rdbLoadObjectFunction · 0.85
rdbLoadRioFunction · 0.85
redis_check_rdbFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected