1
1
openmpi/oshmem/shmem/fortran/shpclmove_f.c
Joshua Ladd 601f9e37cd Fixing FORTRAN bindings in OSHMEM
This commit was SVN r29190.
2013-09-17 16:39:56 +00:00

62 строки
1.3 KiB
C

/*
* Copyright (c) 2013 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/shmem/fortran/bindings.h"
#include "oshmem/include/shmem.h"
#include "oshmem/shmem/shmem_api_logger.h"
#include "stdio.h"
#include "oshmem/runtime/runtime.h"
SHMEM_GENERATE_FORTRAN_BINDINGS_SUB (void,
SHPCLMOVE,
shpclmove_,
shpclmove__,
shpclmove_f,
(FORTRAN_POINTER_T *addr, MPI_Fint *length, MPI_Fint *status, MPI_Fint *abort),
(addr,length,status,abort) )
void shpclmove_f(FORTRAN_POINTER_T *addr, MPI_Fint *length, MPI_Fint *status, MPI_Fint *abort)
{
FORTRAN_POINTER_T prev_addr = *addr;
*status = 0;
if (*length <= 0)
{
*status = -1;
goto Exit;
}
*addr = (FORTRAN_POINTER_T)shrealloc(FPTR_2_VOID_PTR(*addr), OMPI_FINT_2_INT(*length) * 4);
if (*addr == 0)
{
*status = -2;
goto Exit;
}
if (prev_addr != *addr)
{
*status = 1;
}
Exit:
if (*status < 0)
{
if (*abort)
{
oshmem_shmem_abort(-1);
}
}
}