1
1
openmpi/oshmem/mca/spml/base/spml_base_atomicreq.c
Mike Dubman ff384daab4 Added new project: oshmem.
This commit was SVN r28048.
2013-02-12 15:33:21 +00:00

46 строки
1.4 KiB
C

/*
* Copyright (c) 2012 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
#include "oshmem_config.h"
#include "oshmem/types.h"
#include "oshmem/mca/spml/spml.h"
#include "oshmem/mca/spml/base/spml_base_atomicreq.h"
static void mca_spml_base_atomic_request_construct(mca_spml_base_atomic_request_t*);
static void mca_spml_base_atomic_request_destruct(mca_spml_base_atomic_request_t*);
OBJ_CLASS_INSTANCE(
mca_spml_base_atomic_request_t,
mca_spml_base_request_t,
mca_spml_base_atomic_request_construct,
mca_spml_base_atomic_request_destruct
);
static void mca_spml_base_atomic_request_construct(mca_spml_base_atomic_request_t* request)
{
/* no need to reinit for every atomic -- never changes */
request->req_base.req_type = MCA_SPML_REQUEST_ATOMIC_CAS;
OBJ_CONSTRUCT(&request->req_base.req_convertor, opal_convertor_t);
}
static void mca_spml_base_atomic_request_destruct(mca_spml_base_atomic_request_t* request)
{
/* For each request the convertor get cleaned after each message
* (in the base _FINI macro). Therefore, as the convertor is a static object
* we don't have to call OBJ_DESTRUCT here.
*/
}