Subversion Repositories HelenOS

Rev

Rev 2416 | Rev 2431 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2416 Rev 2421
Line 57... Line 57...
57
 
57
 
58
#if defined CONFIG_TIMEOUT_AVL_TREE
58
#if defined CONFIG_TIMEOUT_AVL_TREE
59
    avltree_create(&CPU->timeout_active_tree);
59
    avltree_create(&CPU->timeout_active_tree);
60
#elif defined CONFIG_TIMEOUT_EXTAVL_TREE
60
#elif defined CONFIG_TIMEOUT_EXTAVL_TREE
61
    extavltree_create(&CPU->timeout_active_tree);
61
    extavltree_create(&CPU->timeout_active_tree);
62
#elif defined CONFIG_TIMEOUT_EXTAVL_TREE
62
#elif defined CONFIG_TIMEOUT_EXTAVLREL_TREE
63
    extavlreltree_create(&CPU->timeout_active_tree);
63
    extavlreltree_create(&CPU->timeout_active_tree);
64
#else
64
#else
65
    list_initialize(&CPU->timeout_active_head);
65
    list_initialize(&CPU->timeout_active_head);
66
#endif
66
#endif
67
}
67
}