1
1

As we do call opal_util_init before calling opal_init we should call

opal_finalize_util after calling the opal_finalize.

This commit was SVN r20523.
Этот коммит содержится в:
George Bosilca 2009-02-11 21:01:56 +00:00
родитель db4a49e3b0
Коммит 3b68ae5ea7

Просмотреть файл

@ -1,8 +1,9 @@
/* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* Copyright (c) 2004-2009 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
@ -343,6 +344,10 @@ int ompi_mpi_finalize(void)
return ret;
}
if (OMPI_SUCCESS != (ret = opal_finalize_util())) {
return ret;
}
/* All done */
return MPI_SUCCESS;