1
1

Properly initialize the freelist in the constructor.

This commit was SVN r17175.
Этот коммит содержится в:
Tim Prins 2008-01-22 18:17:06 +00:00
родитель 413bcca4c0
Коммит 889f6c79fe

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

@ -51,6 +51,7 @@ static void ompi_free_list_construct(ompi_free_list_t* fl)
fl->fl_payload_buffer_alignment=0;
fl->fl_frag_class = OBJ_CLASS(ompi_free_list_item_t);
fl->fl_mpool = 0;
fl->ctx = NULL;
OBJ_CONSTRUCT(&(fl->fl_allocations), opal_list_t);
}