File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 12
12
* Copyright (c) 2006-2012 Cisco Systems, Inc. All rights reserved.
13
13
* Copyright (c) 2015 Research Organization for Information Science
14
14
* and Technology (RIST). All rights reserved.
15
+ * Copyright (c) 2022 Triad National Security, LLC. All rights
16
+ * reserved.
15
17
* $COPYRIGHT$
16
18
*
17
19
* Additional copyrights may follow
33
35
#define MPI_Errhandler_c2f PMPI_Errhandler_c2f
34
36
#endif
35
37
36
- static const char FUNC_NAME [] = "MPI_Errhandler_c2f" ;
38
+ static const char FUNC_NAME [] __opal_attribute_unused__ = "MPI_Errhandler_c2f" ;
37
39
38
40
39
41
MPI_Fint MPI_Errhandler_c2f (MPI_Errhandler errhandler )
40
42
{
41
43
/* Error checking */
42
44
43
45
if (MPI_PARAM_CHECK ) {
44
- OMPI_ERR_INIT_FINALIZE (FUNC_NAME );
45
-
46
46
/* mapping an invalid handle to a null handle */
47
47
if (NULL == errhandler ) {
48
48
return OMPI_INT_2_FINT (-1 );
Original file line number Diff line number Diff line change 11
11
* All rights reserved.
12
12
* Copyright (c) 2015 Research Organization for Information Science
13
13
* and Technology (RIST). All rights reserved.
14
+ * Copyright (c) 2022 Triad National Security, LLC. All rights
15
+ * reserved.
14
16
* $COPYRIGHT$
15
17
*
16
18
* Additional copyrights may follow
32
34
#define MPI_Errhandler_free PMPI_Errhandler_free
33
35
#endif
34
36
35
- static const char FUNC_NAME [] = "MPI_Errhandler_free" ;
37
+ static const char FUNC_NAME [] __opal_attribute_unused__ = "MPI_Errhandler_free" ;
36
38
37
39
38
40
int MPI_Errhandler_free (MPI_Errhandler * errhandler )
39
41
{
40
42
/* Error checking */
41
43
42
44
if (MPI_PARAM_CHECK ) {
43
- OMPI_ERR_INIT_FINALIZE (FUNC_NAME );
44
45
/* Raise an MPI exception if we got NULL or if we got an intrinsic
45
46
*and* the reference count is 1 (meaning that this FREE would
46
47
actually free the underlying intrinsic object). This is ugly
Original file line number Diff line number Diff line change 36
36
#endif
37
37
38
38
39
- static const char FUNC_NAME [] = "MPI_Session_call_errhandler" ;
39
+ static const char FUNC_NAME [] __opal_attribute_unused__ = "MPI_Session_call_errhandler" ;
40
40
41
41
42
42
int MPI_Session_call_errhandler (MPI_Session session , int errorcode )
43
43
{
44
44
/* Error checking */
45
45
46
46
if (MPI_PARAM_CHECK ) {
47
- OMPI_ERR_INIT_FINALIZE (FUNC_NAME );
48
47
if (ompi_instance_invalid (session )) {
49
48
if (NULL != session ) {
50
49
return OMPI_ERRHANDLER_INVOKE (session , MPI_ERR_SESSION , FUNC_NAME );
You can’t perform that action at this time.
0 commit comments