mariadb/newbrt/log-internal.h
Bradley C. Kuszmaul b35ac589fe Start implementing a logger
git-svn-id: file:///svn/tokudb@104 c7de825b-a66e-492c-adef-691d508d4ae1
2007-08-10 19:24:45 +00:00

10 lines
230 B
C

#define LOGGER_BUF_SIZE (1<<20)
typedef struct tokulogger *TOKULOGGER;
struct tokulogger {
enum typ_tag tag;
char *directory;
FILE *f;
int next_log_file_number;
char buf[LOGGER_BUF_SIZE];
int n_in_buf;
};