blob: 97de6127af690c7a4da1f88df3802950e324fb9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* DO NOT EDIT: automatically built by dist/s_java. */
package com.sleepycat.db;
public class DbHashStat
{
public int hash_magic;
public int hash_version;
public int hash_metaflags;
public int hash_nkeys;
public int hash_ndata;
public int hash_pagesize;
public int hash_ffactor;
public int hash_buckets;
public int hash_free;
public int hash_bfree;
public int hash_bigpages;
public int hash_big_bfree;
public int hash_overflows;
public int hash_ovfl_free;
public int hash_dup;
public int hash_dup_free;
}
// end of DbHashStat.java
|