Skip to content

Commit e3cb764

Browse files
committed
remove some debug statements
Signed-off-by: Howard Pritchard <[email protected]>
1 parent 3db9b59 commit e3cb764

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

ompi/mpi/c/attr_fn.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ int OMPI_C_MPI_COMM_NULL_DELETE_FN( MPI_Comm comm, int comm_keyval,
112112
void* attribute_val_out,
113113
void* extra_state )
114114
{
115-
fprintf(stderr,"inside OMPI_C_MPI_COMM_NULL_DELETE_FN\n");
116115
return MPI_SUCCESS;
117116
}
118117

@@ -122,7 +121,6 @@ int OMPI_C_MPI_COMM_NULL_COPY_FN( MPI_Comm comm, int comm_keyval,
122121
void* attribute_val_out, int* flag )
123122
{
124123
*flag= 0;
125-
fprintf(stderr,"inside OMPI_C_MPI_COMM_NULL_COPY_FN\n");
126124
return MPI_SUCCESS;
127125
}
128126

@@ -132,7 +130,6 @@ int OMPI_C_MPI_COMM_DUP_FN( MPI_Comm comm, int comm_keyval, void* extra_state,
132130
{
133131
*flag = 1;
134132
*(void**)attribute_val_out = attribute_val_in;
135-
fprintf(stderr,"inside OMPI_C_MPI_COMM_DUP_FN\n");
136133
return MPI_SUCCESS;
137134
}
138135

@@ -146,7 +143,6 @@ int OMPI_C_MPI_NULL_DELETE_FN( MPI_Comm comm, int comm_keyval,
146143
void* attribute_val_out,
147144
void* extra_state )
148145
{
149-
fprintf(stderr,"inside ABI_C_MPI_COMM_NULL_DELETE_FN\n");
150146
return MPI_SUCCESS;
151147
}
152148

@@ -155,7 +151,6 @@ int OMPI_C_MPI_NULL_COPY_FN( MPI_Comm comm, int comm_keyval, void* extra_state,
155151
int* flag )
156152
{
157153
*flag= 0;
158-
fprintf(stderr,"inside ABI_C_MPI_COMM_NULL_COPY_FN\n");
159154
return MPI_SUCCESS;
160155
}
161156

@@ -165,7 +160,6 @@ int OMPI_C_MPI_DUP_FN( MPI_Comm comm, int comm_keyval, void* extra_state,
165160
{
166161
*flag = 1;
167162
*(void**)attribute_val_out = attribute_val_in;
168-
fprintf(stderr,"inside ABI_C_MPI_COMM_DUP_FN\n");
169163
return MPI_SUCCESS;
170164
}
171165
#endif

ompi/mpi/c/attr_fn_abi.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ int ABI_C_MPI_COMM_NULL_DELETE_FN( MPI_Comm_ABI_INTERNAL comm, int comm_keyval,
105105
void* attribute_val_out,
106106
void* extra_state )
107107
{
108-
fprintf(stderr,"inside ABI_C_MPI_COMM_NULL_DELETE_FN\n");
109108
return MPI_SUCCESS;
110109
}
111110

@@ -115,7 +114,6 @@ int ABI_C_MPI_COMM_NULL_COPY_FN( MPI_Comm_ABI_INTERNAL comm, int comm_keyval,
115114
void* attribute_val_out, int* flag )
116115
{
117116
*flag= 0;
118-
fprintf(stderr,"inside ABI_C_MPI_COMM_NULL_COPY_FN\n");
119117
return MPI_SUCCESS;
120118
}
121119

@@ -125,6 +123,5 @@ int ABI_C_MPI_COMM_DUP_FN( MPI_Comm_ABI_INTERNAL comm, int comm_keyval, void* ex
125123
{
126124
*flag = 1;
127125
*(void**)attribute_val_out = attribute_val_in;
128-
fprintf(stderr,"inside ABI_C_MPI_COMM_DUP_FN\n");
129126
return MPI_SUCCESS;
130127
}

0 commit comments

Comments
 (0)