@@ -158,8 +158,8 @@ int ompi_dpm_connect_accept(ompi_communicator_t *comm, int root,
158158 sizeof (ompi_proc_t * ));
159159 for (i = 0 ; i < group -> grp_proc_count ; i ++ ) {
160160 if (NULL == (proc_list [i ] = ompi_group_peer_lookup (group ,i ))) {
161- ORTE_ERROR_LOG ( ORTE_ERR_NOT_FOUND );
162- rc = ORTE_ERR_NOT_FOUND ;
161+ OMPI_ERROR_LOG ( OMPI_ERR_NOT_FOUND );
162+ rc = OMPI_ERR_NOT_FOUND ;
163163 free (proc_list );
164164 goto exit ;
165165 }
@@ -665,10 +665,10 @@ int ompi_dpm_spawn(int count, const char *array_of_commands[],
665665 for (i = 0 ; i < count ; ++ i ) {
666666 app = OBJ_NEW (opal_pmix_app_t );
667667 if (NULL == app ) {
668- ORTE_ERROR_LOG ( ORTE_ERR_OUT_OF_RESOURCE );
668+ OMPI_ERROR_LOG ( OMPI_ERR_OUT_OF_RESOURCE );
669669 OPAL_LIST_DESTRUCT (& apps );
670670 opal_progress_event_users_decrement ();
671- return ORTE_ERR_OUT_OF_RESOURCE ;
671+ return OMPI_ERR_OUT_OF_RESOURCE ;
672672 }
673673 /* add the app to the job data */
674674 opal_list_append (& apps , & app -> super );
@@ -893,9 +893,9 @@ int ompi_dpm_spawn(int count, const char *array_of_commands[],
893893 ompi_info_get (array_of_info [i ], "ompi_stdin_target" , sizeof (stdin_target ) - 1 , stdin_target , & flag );
894894 if ( flag ) {
895895 if (0 == strcmp (stdin_target , "all" )) {
896- ui32 = ORTE_VPID_WILDCARD ;
896+ ui32 = OPAL_VPID_WILDCARD ;
897897 } else if (0 == strcmp (stdin_target , "none" )) {
898- ui32 = ORTE_VPID_INVALID ;
898+ ui32 = OPAL_VPID_INVALID ;
899899 } else {
900900 ui32 = strtoul (stdin_target , NULL , 10 );
901901 }
@@ -911,7 +911,7 @@ int ompi_dpm_spawn(int count, const char *array_of_commands[],
911911 */
912912 if ( !have_wdir ) {
913913 if (OMPI_SUCCESS != (rc = opal_getcwd (cwd , OPAL_PATH_MAX ))) {
914- ORTE_ERROR_LOG (rc );
914+ OMPI_ERROR_LOG (rc );
915915 OPAL_LIST_DESTRUCT (& apps );
916916 opal_progress_event_users_decrement ();
917917 return rc ;
0 commit comments