|
26 | 26 | * reserved. |
27 | 27 | * Copyright (c) 2021 Bull S.A.S. All rights reserved. |
28 | 28 | * Copyright (c) 2018 Triad National Security, LLC. All rights |
29 | | - * Copyright (c) 2018-2021 Triad National Security, LLC. All rights |
| 29 | + * Copyright (c) 2018-2022 Triad National Security, LLC. All rights |
30 | 30 | * reserved. |
31 | 31 | * $COPYRIGHT$ |
32 | 32 | * |
@@ -513,7 +513,6 @@ typedef int (MPI_Type_delete_attr_function)(MPI_Datatype, int, |
513 | 513 | typedef int (MPI_Win_copy_attr_function)(MPI_Win, int, void *, |
514 | 514 | void *, void *, int *); |
515 | 515 | typedef int (MPI_Win_delete_attr_function)(MPI_Win, int, void *, void *); |
516 | | -typedef int (MPI_Session_delete_attr_function)(MPI_Session, int, void *, void *); |
517 | 516 | typedef int (MPI_Grequest_query_function)(void *, MPI_Status *); |
518 | 517 | typedef int (MPI_Grequest_free_function)(void *); |
519 | 518 | typedef int (MPI_Grequest_cancel_function)(void *, int); |
@@ -1939,16 +1938,19 @@ OMPI_DECLSPEC int MPI_Sendrecv_replace(void * buf, int count, MPI_Datatype data |
1939 | 1938 | int dest, int sendtag, int source, int recvtag, |
1940 | 1939 | MPI_Comm comm, MPI_Status *status); |
1941 | 1940 | OMPI_DECLSPEC MPI_Fint MPI_Session_c2f (const MPI_Session session); |
| 1941 | +OMPI_DECLSPEC int MPI_Session_call_errhandler(MPI_Session session, int errorcode); |
1942 | 1942 | OMPI_DECLSPEC int MPI_Session_create_errhandler (MPI_Session_errhandler_function *session_errhandler_fn, |
1943 | 1943 | MPI_Errhandler *errhandler); |
1944 | 1944 | OMPI_DECLSPEC int MPI_Session_finalize (MPI_Session *session); |
| 1945 | +OMPI_DECLSPEC int MPI_Session_get_errhandler(MPI_Session session, MPI_Errhandler *erhandler); |
1945 | 1946 | OMPI_DECLSPEC int MPI_Session_get_info (MPI_Session session, MPI_Info *info_used); |
1946 | 1947 | OMPI_DECLSPEC int MPI_Session_get_num_psets (MPI_Session session, MPI_Info info, int *npset_names); |
1947 | 1948 | OMPI_DECLSPEC int MPI_Session_get_nth_pset (MPI_Session session, MPI_Info info, int n, int *len, char *pset_name); |
1948 | 1949 | OMPI_DECLSPEC int MPI_Session_get_pset_info (MPI_Session session, const char *pset_name, MPI_Info *info_used); |
1949 | 1950 | OMPI_DECLSPEC int MPI_Session_init (MPI_Info info, MPI_Errhandler errhandler, |
1950 | 1951 | MPI_Session *session); |
1951 | 1952 | OMPI_DECLSPEC MPI_Session MPI_Session_f2c (MPI_Fint session); |
| 1953 | +OMPI_DECLSPEC int MPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler); |
1952 | 1954 | OMPI_DECLSPEC int MPI_Session_set_info (MPI_Session session, MPI_Info info); |
1953 | 1955 | OMPI_DECLSPEC int MPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, |
1954 | 1956 | int dest, int tag, MPI_Comm comm, |
@@ -2700,16 +2702,19 @@ OMPI_DECLSPEC int PMPI_Sendrecv_replace(void * buf, int count, MPI_Datatype dat |
2700 | 2702 | int dest, int sendtag, int source, int recvtag, |
2701 | 2703 | MPI_Comm comm, MPI_Status *status); |
2702 | 2704 | OMPI_DECLSPEC MPI_Fint PMPI_Session_c2f (const MPI_Session session); |
| 2705 | +OMPI_DECLSPEC int PMPI_Session_call_errhandler(MPI_Session session, int errorcode); |
2703 | 2706 | OMPI_DECLSPEC int PMPI_Session_create_errhandler (MPI_Session_errhandler_function *session_errhandler_fn, |
2704 | 2707 | MPI_Errhandler *errhandler); |
2705 | 2708 | OMPI_DECLSPEC int PMPI_Session_finalize (MPI_Session *session); |
| 2709 | +OMPI_DECLSPEC int PMPI_Session_get_errhandler(MPI_Session session, MPI_Errhandler *erhandler); |
2706 | 2710 | OMPI_DECLSPEC int PMPI_Session_get_info (MPI_Session session, MPI_Info *info_used); |
2707 | 2711 | OMPI_DECLSPEC int PMPI_Session_get_num_psets (MPI_Session session, MPI_Info info, int *npset_names); |
2708 | 2712 | OMPI_DECLSPEC int PMPI_Session_get_nth_pset (MPI_Session session, MPI_Info info, int n, int *len, char *pset_name); |
2709 | 2713 | OMPI_DECLSPEC int PMPI_Session_get_pset_info (MPI_Session session, const char *pset_name, MPI_Info *info_used); |
2710 | 2714 | OMPI_DECLSPEC int PMPI_Session_init (MPI_Info info, MPI_Errhandler errhandler, |
2711 | 2715 | MPI_Session *session); |
2712 | 2716 | OMPI_DECLSPEC MPI_Session PMPI_Session_f2c (MPI_Fint session); |
| 2717 | +OMPI_DECLSPEC int PMPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler erhandler); |
2713 | 2718 | OMPI_DECLSPEC int PMPI_Session_set_info (MPI_Session session, MPI_Info info); |
2714 | 2719 | OMPI_DECLSPEC int PMPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype, |
2715 | 2720 | int dest, int tag, MPI_Comm comm, |
|
0 commit comments