07e79441b3
ring_oshmem_c.c and hello_oshmem_c.c support new api other examples support legacy api but warning message is provided during compilation
31 строка
544 B
C
31 строка
544 B
C
/*
|
|
* Copyright (c) 2014 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* This sample allocates (shmalloc) symmetric memory (1 long integer),
|
|
* and then frees it. Success of allocation is not checked.
|
|
*
|
|
* Produces no output.
|
|
*/
|
|
|
|
#include <shmem.h>
|
|
|
|
#warning This application uses deprecated API see http://www.open-mpi.org/
|
|
|
|
int main(void)
|
|
{
|
|
long *x;
|
|
|
|
start_pes(0);
|
|
|
|
x = (long *) shmalloc(sizeof(*x));
|
|
|
|
shfree(x);
|
|
}
|
|
|