/** the list of threads, so all threads can be examined. NULL if unused. */
static struct thr_check* thread_infos[THRDEBUG_MAX_THREADS];
/** do we check locking order */
-int check_locking_order = 1;
+int check_locking_order = 0;
/** the pid of this runset, reasonably unique. */
static pid_t check_lock_pid;
/** increase size until it fits alignment of s bytes */
#define ALIGN_UP(x, s) (((x) + s - 1) & (~(s - 1)))
/** what size to align on */
-#define ALIGNMENT (sizeof(void *))
+#define ALIGNMENT (sizeof(uint64_t))
/** set to 1 to perform expensive check for double recycle() */
#define CHECK_DOUBLE_FREE 0