| 47 | } |
| 48 | |
| 49 | uint64_t redisBuildId(void) { |
| 50 | char *buildid = REDIS_VERSION REDIS_BUILD_ID REDIS_GIT_DIRTY REDIS_GIT_SHA1; |
| 51 | |
| 52 | return crc64(0,(unsigned char*)buildid,strlen(buildid)); |
| 53 | } |
| 54 | |
| 55 | /* Return a cached value of the build string in order to avoid recomputing |
| 56 | * and converting it in hex every time: this string is shown in the INFO |
no test coverage detected