diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-06-06 12:44:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:53:12 -0500 |
commit | d89e6c774bbf6738183459c52acbd3220482d58a (patch) | |
tree | 7b6203b00d8a370618ff1fe1c43c087192089626 /source4/lib/ldb/include | |
parent | 14846bf4f6f185f550570e6a524c265d585454ef (diff) | |
download | samba-d89e6c774bbf6738183459c52acbd3220482d58a.tar.gz samba-d89e6c774bbf6738183459c52acbd3220482d58a.tar.bz2 samba-d89e6c774bbf6738183459c52acbd3220482d58a.zip |
r23364: add LDB_FLG_NOMMAP flag
(This used to be commit 0c3442c68b01b6804f3fd966fc1fe9097eb863aa)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index 3e09cf1506..10b9b4c8ce 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -232,6 +232,11 @@ struct ldb_utf8_fns { */ #define LDB_FLG_RECONNECT 4 +/** + Flag to tell backends not to use mmap +*/ +#define LDB_FLG_NOMMAP 8 + /* structures for ldb_parse_tree handling code */ |