00001
00002
00003
00004
00005
00006 #ifndef _tredmill_CONFIG_H
00007 #define _tredmill_CONFIG_H
00008
00009
00010
00011
00012
00013
00014 #ifndef PAGESIZE
00015
00016
00017 #define PAGESIZE (1 << 13)
00018 #endif
00019
00020 #ifndef tm_PAGESIZE
00021
00022 #define tm_PAGESIZE PAGESIZE
00023 #endif
00024
00025 #ifndef tm_TIME_STAT
00026 #define tm_TIME_STAT 1
00027 #endif
00028
00029 #ifndef tm_name_GUARD
00030 #define tm_name_GUARD 0
00031 #endif
00032
00033 #ifndef tm_block_GUARD
00034 #define tm_block_GUARD 0
00035 #endif
00036
00037 #ifndef tm_GC_THRESHOLD
00038 #define tm_GC_THRESHOLD 3 / 4
00039 #endif
00040
00041
00042 #define tm_node_HDR_SIZE sizeof(struct tm_node)
00043
00044
00045 #define tm_block_HDR_SIZE sizeof(struct tm_block)
00046
00047
00048 #define tm_block_SIZE_MAX (tm_block_SIZE - tm_block_HDR_SIZE)
00049
00050
00051
00052
00053
00054 enum tm_config {
00055
00056 tm_ALLOC_ALIGN = 8,
00057
00058
00059 tm_PTR_ALIGN = __alignof(void*),
00060
00061
00062 tm_block_SIZE = tm_PAGESIZE,
00063
00064
00065 tm_page_SIZE = tm_PAGESIZE,
00066
00067
00068 tm_address_range_k = 1UL << (sizeof(void*) * 8 - 10),
00069
00070
00071 tm_block_N_MAX = sizeof(void*) / tm_block_SIZE,
00072 };
00073
00074
00075
00076 #define tm_block_SIZE_MASK ~(((unsigned long) tm_block_SIZE) - 1)
00077
00078
00079 #define tm_page_SIZE_MASK ~(((unsigned long) tm_page_SIZE) - 1)
00080
00081
00082
00083 #endif