
API consistent with other collective modules Add comments Other minor cleanups. Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
26 строки
624 B
C
26 строки
624 B
C
/*
|
|
* Copyright (c) 2014-2020 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "opal/class/opal_list.h"
|
|
#include "coll_adapt_inbuf.h"
|
|
|
|
struct ompi_coll_adapt_item_s {
|
|
opal_list_item_t super;
|
|
/* Fragment id */
|
|
int id;
|
|
/* The number of children which have received the current segment */
|
|
int count;
|
|
};
|
|
|
|
typedef struct ompi_coll_adapt_item_s ompi_coll_adapt_item_t;
|
|
|
|
OBJ_CLASS_DECLARATION(ompi_coll_adapt_item_t);
|