2005-03-19 02:26:58 +00:00
|
|
|
void run_xact(DB_ENV *, DB *, int, int);
|
|
|
|
void *checkpoint_thread(void *);
|
|
|
|
void log_archlist(DB_ENV *);
|
|
|
|
void *logfile_thread(void *);
|
2005-03-20 05:17:25 +00:00
|
|
|
/**
|
|
|
|
@param type DB_RECNO, DB_HASH or DB_BTREE
|
|
|
|
*/
|
|
|
|
void db_open(DB_ENV *, DB **, char *, int type);
|
2005-03-19 02:26:58 +00:00
|
|
|
void env_dir_create(void);
|
|
|
|
void env_open(DB_ENV **);
|
|
|
|
void usage(void);
|
|
|
|
|
|
|
|
extern DB_ENV *dbenv;
|
|
|
|
extern DB *db_cats;
|
|
|
|
|
|
|
|
#define ENV_DIRECTORY "TXNAPP"
|
|
|
|
|