Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2415 → Rev 2416

/branches/rcu/kernel/generic/include/cpu.h
64,9 → 64,15
volatile count_t needs_relink;
 
SPINLOCK_DECLARE(timeoutlock);
#ifdef CONFIG_TIMEOUT_EXTAVL_TREE
#if defined CONFIG_TIMEOUT_AVL_TREE
/** AVL tree structure. */
avltree_t timeout_active_tree;
#elif defined CONFIG_TIMEOUT_EXTAVL_TREE
/** Extended AVL tree structure. */
extavltree_t timeout_active_tree;
#elif defined CONFIG_TIMEOUT_EXTAVLREL_TREE
/** Extended AVL tree structure with relative keys. */
extavlreltree_t timeout_active_tree;
#else
/** Head of list of timeouts. */
link_t timeout_active_head;