Skip to content

Commit 2b744c2

Browse files
committed
Merge pull request open-mpi#643 from hppritcha/topic/remove_cr_calls
ft_removal: remove cr calls in 'c' interfaces
2 parents b1658fb + de41c3c commit 2b744c2

File tree

377 files changed

+0
-758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+0
-758
lines changed

ompi/mpi/c/abort.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ int MPI_Abort(MPI_Comm comm, int errorcode)
4343
memchecker_comm(comm);
4444
);
4545

46-
OPAL_CR_ABORT_LIBRARY();
47-
4846
/* Don't even bother checking comm and errorcode values for
4947
errors */
5048

ompi/mpi/c/accumulate.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ int MPI_Accumulate(const void *origin_addr, int origin_count, MPI_Datatype origi
126126
return MPI_SUCCESS;
127127
}
128128

129-
OPAL_CR_ENTER_LIBRARY();
130-
131129
rc = ompi_win->w_osc_module->osc_accumulate(origin_addr,
132130
origin_count,
133131
origin_datatype,

ompi/mpi/c/add_error_class.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ int MPI_Add_error_class(int *errorclass)
4242
int err_class;
4343
int rc;
4444

45-
OPAL_CR_NOOP_PROGRESS();
46-
4745
if ( MPI_PARAM_CHECK ) {
4846
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
4947

ompi/mpi/c/add_error_code.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ int MPI_Add_error_code(int errorclass, int *errorcode)
4242
int code;
4343
int rc;
4444

45-
OPAL_CR_NOOP_PROGRESS();
46-
4745
if ( MPI_PARAM_CHECK ) {
4846
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
4947

ompi/mpi/c/add_error_string.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ int MPI_Add_error_string(int errorcode, const char *string)
4141
{
4242
int rc;
4343

44-
OPAL_CR_NOOP_PROGRESS();
45-
4644
if ( MPI_PARAM_CHECK ) {
4745
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
4846

ompi/mpi/c/address.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ static const char FUNC_NAME[] = "MPI_Address";
3838
int MPI_Address(void *location, MPI_Aint *address)
3939
{
4040

41-
OPAL_CR_NOOP_PROGRESS();
42-
4341
if( MPI_PARAM_CHECK ) {
4442
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
4543
if (NULL == location || NULL == address) {

ompi/mpi/c/allgather.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
115115
}
116116
}
117117

118-
OPAL_CR_ENTER_LIBRARY();
119-
120118
/* Invoke the coll component to perform the back-end operation */
121119

122120
err = comm->c_coll.coll_allgather(sendbuf, sendcount, sendtype,

ompi/mpi/c/allgatherv.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
137137
something */
138138

139139

140-
OPAL_CR_ENTER_LIBRARY();
141-
142140
/* Invoke the coll component to perform the back-end operation */
143141
err = comm->c_coll.coll_allgatherv(sendbuf, sendcount, sendtype,
144142
recvbuf, (int *) recvcounts,

ompi/mpi/c/alloc_mem.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,7 @@ int MPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr)
6666
return MPI_SUCCESS;
6767
}
6868

69-
OPAL_CR_ENTER_LIBRARY();
70-
7169
*((void **) baseptr) = mca_mpool_base_alloc((size_t) size, (struct opal_info_t*)info);
72-
OPAL_CR_EXIT_LIBRARY();
7370
if (NULL == *((void **) baseptr)) {
7471
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_NO_MEM,
7572
FUNC_NAME);

ompi/mpi/c/allreduce.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ int MPI_Allreduce(const void *sendbuf, void *recvbuf, int count,
102102
return MPI_SUCCESS;
103103
}
104104

105-
OPAL_CR_ENTER_LIBRARY();
106-
107105
/* Invoke the coll component to perform the back-end operation */
108106

109107
OBJ_RETAIN(op);

0 commit comments

Comments
 (0)