1
1

Save the ghost pointer once the element is initialized.

This commit was SVN r14189.
Этот коммит содержится в:
George Bosilca 2007-04-01 16:18:48 +00:00
родитель f2a6b9394f
Коммит cd5a4c6416

Просмотреть файл

@ -21,9 +21,9 @@
static void opal_atomic_lifo_construct( opal_atomic_lifo_t* lifo )
{
lifo->opal_lifo_head = &(lifo->opal_lifo_ghost);
OBJ_CONSTRUCT( &(lifo->opal_lifo_ghost), opal_list_item_t );
lifo->opal_lifo_ghost.opal_list_next = &(lifo->opal_lifo_ghost);
lifo->opal_lifo_head = &(lifo->opal_lifo_ghost);
}
OBJ_CLASS_INSTANCE( opal_atomic_lifo_t,