1
1
openmpi/oshmem/shmem/c/globalexit.c
2013-10-14 09:48:35 +00:00

28 строки
489 B
C

/*
* Copyright (c) 2012 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/include/shmem.h"
#include "oshmem/runtime/runtime.h"
#include "orte/mca/errmgr/errmgr.h"
extern int inGlobalExit;
void globalexit(int status)
{
inGlobalExit++;
orte_errmgr.abort(status, NULL);
oshmem_shmem_aborted = true;
exit(status);
}