1
1
openmpi/oshmem/shmem/c/shmem_alloc.c
Ralph Castain 1e2019ce2a Revert "Update to sync with OMPI master and cleanup to build"
This reverts commit cb55c88a8b7817d5891ff06a447ea190b0e77479.
2016-11-22 15:03:20 -08:00

60 строки
1.2 KiB
C

/*
* Copyright (c) 2013-2015 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/constants.h"
#include "oshmem/include/shmem.h"
#include "oshmem/shmem/shmem_api_logger.h"
#include "oshmem/runtime/runtime.h"
#include "oshmem/mca/memheap/memheap.h"
#if OSHMEM_PROFILING
#include "oshmem/include/pshmem.h"
#pragma weak shmem_malloc = pshmem_malloc
#pragma weak shmalloc = pshmalloc
#include "oshmem/shmem/c/profile/defines.h"
#endif
static inline void* _shmalloc(size_t size);
void* shmem_malloc(size_t size)
{
return _shmalloc(size);
}
void* shmalloc(size_t size)
{
return _shmalloc(size);
}
static inline void* _shmalloc(size_t size)
{
int rc;
void* pBuff = NULL;
RUNTIME_CHECK_INIT();
RUNTIME_CHECK_WITH_MEMHEAP_SIZE(size);
rc = MCA_MEMHEAP_CALL(alloc(size, &pBuff));
if (OSHMEM_SUCCESS != rc) {
SHMEM_API_VERBOSE(10,
"Allocation with shmalloc(size=%lu) failed.",
(unsigned long)size);
return NULL ;
}
#if OSHMEM_SPEC_COMPAT == 1
shmem_barrier_all();
#endif
return pBuff;
}