Skip to content

Commit f0712b2

Browse files
cchambreaujsquyres
authored andcommitted
Add user_data argument to MPI_T_event_handle_free function.
Signed-off-by: Chris Chambreau <chambreau1@llnl.gov>
1 parent 1dd9b41 commit f0712b2

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

ompi/include/mpi.h.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2980,6 +2980,7 @@ OMPI_DECLSPEC int PMPI_T_event_callback_set_info (MPI_T_event_registration even
29802980
OMPI_DECLSPEC int PMPI_T_event_callback_get_info (MPI_T_event_registration event_registration,
29812981
MPI_T_cb_safety cb_safety, MPI_Info *info_used);
29822982
OMPI_DECLSPEC int PMPI_T_event_handle_free (MPI_T_event_registration event_registration,
2983+
void *user_data,
29832984
MPI_T_event_free_cb_function free_cb_function);
29842985
OMPI_DECLSPEC int PMPI_T_event_set_dropped_handler (MPI_T_event_registration handle,
29852986
MPI_T_event_dropped_cb_function dropped_cb_function);
@@ -3073,6 +3074,7 @@ OMPI_DECLSPEC int MPI_T_event_handle_set_info (MPI_T_event_registration event_r
30733074
OMPI_DECLSPEC int MPI_T_event_handle_get_info (MPI_T_event_registration event_registration,
30743075
MPI_Info *info_used);
30753076
OMPI_DECLSPEC int MPI_T_event_handle_free (MPI_T_event_registration event_registration,
3077+
void *user_data,
30763078
MPI_T_event_free_cb_function free_cb_function);
30773079
OMPI_DECLSPEC int MPI_T_event_register_callback (MPI_T_event_registration event_registration,
30783080
MPI_T_cb_safety cb_safety, MPI_Info info, void *user_data,

ompi/mpi/tool/event_handle_free.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626

2727
int MPI_T_event_handle_free (MPI_T_event_registration event_registration,
28+
void *user_data,
2829
MPI_T_event_free_cb_function free_cb_function)
2930
{
3031
int ret = MPI_SUCCESS;

0 commit comments

Comments
 (0)