summaryrefslogtreecommitdiff
path: root/src/common/db.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/db.h')
-rw-r--r--src/common/db.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/db.h b/src/common/db.h
index 8b37e15ad..6980099cf 100644
--- a/src/common/db.h
+++ b/src/common/db.h
@@ -18,6 +18,11 @@ struct dbn {
struct dbn *prev;
};
+struct db_free {
+ struct dbn *z;
+ struct dbn **root;
+};
+
struct dbt {
int (*cmp)(struct dbt*,void*,void*);
unsigned int (*hash)(struct dbt*,void*);
@@ -30,10 +35,7 @@ struct dbt {
int alloc_line; // DB?s
// db_foreach 内部でdb_erase される対策として、
// db_foreach が終わるまでロックすることにする
- struct db_free {
- struct dbn *z;
- struct dbn **root;
- } *free_list;
+ struct db_free *free_list;
int free_count;
int free_max;
int free_lock;