
* piggybacking Bull functionalities * coll/adapt: Fix naming conventions and C11 atomic use This commit fixes some naming convention issues, such as function names which should follow the naming ompi_coll_adapt instead of mca_coll_adapt, reserved for component and module naming (cf. tuned collective component); It also fixes the use of _Atomic construct, which is only valid in C11. OPAL constructs have already been adapted to that use, so use opal_atomic_* types instead. * coll/adapt: Remove unused component field in module This commit removes an unneeded field referencing the component in the module of adapt, as it is already available through the mca_coll_adapt_component global variable. Signed-off-by: Marc Sergent <marc.sergent@atos.net> Co-authored-by: Lemarinier, Pierre <pierre.lemarinier@atos.net> Co-authored-by: pierrele <31764860+pierrele@users.noreply.github.com>
27 строки
629 B
C
27 строки
629 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$
|
|
*/
|
|
|
|
#ifndef MCA_COLL_ADAPT_INBUF_H
|
|
#define MCA_COLL_ADAPT_INBUF_H
|
|
|
|
#include "opal/class/opal_free_list.h"
|
|
|
|
struct ompi_coll_adapt_inbuf_s {
|
|
opal_free_list_item_t super;
|
|
char buff[1];
|
|
};
|
|
|
|
typedef struct ompi_coll_adapt_inbuf_s ompi_coll_adapt_inbuf_t;
|
|
|
|
OBJ_CLASS_DECLARATION(ompi_coll_adapt_inbuf_t);
|
|
|
|
#endif /* MCA_COLL_ADAPT_INBUF_H */
|