xref: /freebsd/sys/contrib/ck/include/ck_md.h (revision b0b1dbdd)
1 /*
2  * Copyright 2011-2012 Samy Al Bahra.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #ifndef CK_MD_H
30 #define CK_MD_H
31 
32 #ifndef CK_MD_CACHELINE
33 #define CK_MD_CACHELINE (64)
34 #endif
35 
36 #ifndef CK_MD_PAGESIZE
37 #define CK_MD_PAGESIZE (4096)
38 #endif
39 
40 #ifndef CK_MD_RTM_DISABLE
41 #define CK_MD_RTM_DISABLE
42 #endif /* CK_MD_RTM_DISABLE */
43 
44 #ifndef CK_MD_POINTER_PACK_DISABLE
45 #define CK_MD_POINTER_PACK_DISABLE
46 #endif /* CK_MD_POINTER_PACK_DISABLE */
47 
48 #ifndef CK_MD_VMA_BITS_UNKNOWN
49 #define CK_MD_VMA_BITS_UNKNOWN
50 #endif /* CK_MD_VMA_BITS_UNKNOWN */
51 
52 #ifndef CK_PR_DISABLE_DOUBLE
53 #define CK_PR_DISABLE_DOUBLE
54 #endif /* CK_PR_DISABLE_DOUBLE */
55 
56 #ifndef CK_MD_RMO
57 #define CK_MD_RMO
58 #endif /* CK_MD_RMO */
59 
60 #define CK_VERSION "0.6.0"
61 #define CK_GIT_SHA ""
62 
63 /*
64  * CK expects those, which are normally defined by the build system.
65  */
66 #if defined(__i386__) && !defined(__x86__)
67 #define __x86__
68 #elif defined(__sparc64__) && !defined(__sparcv9__)
69 #define __sparcv9__
70 #elif defined(__powerpc64__) && !defined(__ppc64__)
71 #define __ppc64__
72 #elif defined(__powerpc__) && !defined(__ppc__)
73 #define __ppc__
74 #endif
75 #endif /* CK_MD_H */
76