| 6614 | } |
| 6615 | |
| 6616 | void version(void) { |
| 6617 | printf("KeyDB server v=%s sha=%s:%d malloc=%s bits=%d build=%llx\n", |
| 6618 | KEYDB_REAL_VERSION, |
| 6619 | redisGitSHA1(), |
| 6620 | atoi(redisGitDirty()) > 0, |
| 6621 | ZMALLOC_LIB, |
| 6622 | sizeof(long) == 4 ? 32 : 64, |
| 6623 | (unsigned long long) redisBuildId()); |
| 6624 | exit(0); |
| 6625 | } |
| 6626 | |
| 6627 | void usage(void) { |
| 6628 | fprintf(stderr,"Usage: ./keydb-server [/path/to/keydb.conf] [options] [-]\n"); |
no test coverage detected