mirror of
https://github.com/fluencelabs/redis
synced 2025-06-28 08:21:32 +00:00
Introduced the Build ID in INFO and --version output.
The idea is to be able to identify a build in a unique way, so for instance after a bug report we can recognize that the build is the one of a popular Linux distribution and perform the debugging in the same environment.
This commit is contained in:
8
src/crc64.h
Normal file
8
src/crc64.h
Normal file
@ -0,0 +1,8 @@
|
||||
#ifndef CRC64_H
|
||||
#define CRC64_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user