| 2517 | } |
| 2518 | |
| 2519 | static int updateProcTitleTemplate(char *val, char *prev, const char **err) { |
| 2520 | UNUSED(val); |
| 2521 | UNUSED(prev); |
| 2522 | if (redisSetProcTitle(NULL) == C_ERR) { |
| 2523 | *err = "failed to set process title"; |
| 2524 | return 0; |
| 2525 | } |
| 2526 | return 1; |
| 2527 | } |
| 2528 | |
| 2529 | static int updateHZ(long long val, long long prev, const char **err) { |
| 2530 | UNUSED(prev); |
nothing calls this directly
no test coverage detected