~ubuntu-branches/ubuntu/maverick/openldap/maverick-proposed

« back to all changes in this revision

Viewing changes to servers/slapd/back-bdb/back-bdb.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2009-09-07 13:41:10 UTC
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20090907134110-jsdrvn0atu1fex4m
Tags: upstream-2.4.18
ImportĀ upstreamĀ versionĀ 2.4.18

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* back-bdb.h - bdb back-end header file */
2
 
/* $OpenLDAP: pkg/ldap/servers/slapd/back-bdb/back-bdb.h,v 1.141.2.21 2009/05/08 16:37:41 quanah Exp $ */
 
2
/* $OpenLDAP: pkg/ldap/servers/slapd/back-bdb/back-bdb.h,v 1.141.2.23 2009/08/25 22:58:09 quanah Exp $ */
3
3
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4
4
 *
5
5
 * Copyright 2000-2009 The OpenLDAP Foundation.
125
125
        EntryInfo       *c_lruhead;     /* lru - add accessed entries here */
126
126
        EntryInfo       *c_lrutail;     /* lru - rem lru entries from here */
127
127
        EntryInfo       c_dntree;
128
 
        unsigned        c_maxsize;
129
 
        int             c_cursize;
130
 
        unsigned        c_minfree;
131
 
        unsigned        c_eimax;
132
 
        int             c_eiused;       /* EntryInfo's in use */
133
 
        int             c_leaves;       /* EntryInfo leaf nodes */
 
128
        ID              c_maxsize;
 
129
        ID              c_cursize;
 
130
        ID              c_minfree;
 
131
        ID              c_eimax;
 
132
        ID              c_eiused;       /* EntryInfo's in use */
 
133
        ID              c_leaves;       /* EntryInfo leaf nodes */
134
134
        int             c_purging;
135
135
        DB_TXN  *c_txn; /* used by lru cleaner */
136
136
        ldap_pvt_thread_rdwr_t c_rwlock;
199
199
        struct re_s             *bi_txn_cp_task;
200
200
        struct re_s             *bi_index_task;
201
201
 
202
 
        int                     bi_lock_detect;
 
202
        u_int32_t               bi_lock_detect;
203
203
        long            bi_shm_key;
204
204
 
205
205
        ID                      bi_lastid;
206
206
        ldap_pvt_thread_mutex_t bi_lastid_mutex;
207
 
        unsigned        bi_idl_cache_max_size;
208
 
        int             bi_idl_cache_size;
 
207
        ID      bi_idl_cache_max_size;
 
208
        ID              bi_idl_cache_size;
209
209
        Avlnode         *bi_idl_tree;
210
210
        bdb_idl_cache_entry_t   *bi_idl_lru_head;
211
211
        bdb_idl_cache_entry_t   *bi_idl_lru_tail;