2 * @brief Configuration file.
8 /** Turn on debugging. */
9 /* #ifndef CONFIG_DEBUG
14 /** Turn on support for dumping cyclegraphs as dot files at each
16 #define SUPPORT_MOD_ORDER_DUMP 0
18 /** Do we have a 48 bit virtual address (64 bit machine) or 32 bit addresses.
19 * Set to 1 for 48-bit, 0 for 32-bit. */
28 /** Snapshotting configurables */
31 * If USE_MPROTECT_SNAPSHOT=2, then snapshot by tuned mmap() algorithm
32 * If USE_MPROTECT_SNAPSHOT=1, then snapshot by using mmap() and mprotect()
33 * If USE_MPROTECT_SNAPSHOT=0, then snapshot by using fork() */
34 #define USE_MPROTECT_SNAPSHOT 2
36 /** Size of signal stack */
37 #define SIGSTACKSIZE 32768
39 /** Page size configuration */
42 /** Thread parameters */
44 /* Size of stack to allocate for a thread. */
45 #define STACK_SIZE (1024 * 1024)