14 lines
335 B
C
14 lines
335 B
C
#ifndef __KVS_INC_LOG_H__
|
|
#define __KVS_INC_LOG_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int init_cmd_log(const char *file, int *logfd);
|
|
int destroy_cmd_log(int logfd);
|
|
|
|
int kvs_save_cmd_to_logfile(const uint8_t *cmd, size_t len, int logfd);
|
|
int kvs_replay_log(const char *logfile, int logfd);
|
|
int ksv_clear_log(int logfd);
|
|
|
|
#endif |