xref: /haiku/src/libs/libsolv/solv/poolid_private.h (revision 909af08f4328301fbdef1ffb41f566c3b5bec0c7)
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7 
8 /*
9  * poolid_private.h
10  *
11  */
12 
13 #ifndef LIBSOLV_POOLID_PRIVATE_H
14 #define LIBSOLV_POOLID_PRIVATE_H
15 
16 /* the size of all buffers is incremented in blocks
17  * these are the block values (increment values) for the
18  * rel hashtable
19  */
20 #define REL_BLOCK		1023	/* hashtable for relations */
21 #define WHATPROVIDES_BLOCK	1023
22 
23 #endif /* LIBSOLV_POOLID_PRIVATE_H */
24