@@ -309,7 +309,7 @@ static inline void mca_btl_tcp_endpoint_event_init(mca_btl_base_endpoint_t* btl_
309309 btl_endpoint -> endpoint_cache_pos = btl_endpoint -> endpoint_cache ;
310310#endif /* MCA_BTL_TCP_ENDPOINT_CACHE */
311311
312- opal_event_set (opal_event_base , & btl_endpoint -> endpoint_recv_event ,
312+ opal_event_set (opal_sync_event_base , & btl_endpoint -> endpoint_recv_event ,
313313 btl_endpoint -> endpoint_sd ,
314314 OPAL_EV_READ |OPAL_EV_PERSIST ,
315315 mca_btl_tcp_endpoint_recv_handler ,
@@ -320,7 +320,7 @@ static inline void mca_btl_tcp_endpoint_event_init(mca_btl_base_endpoint_t* btl_
320320 * will be fired only once, and when the endpoint is marked as
321321 * CONNECTED the event should be recreated with the correct flags.
322322 */
323- opal_event_set (opal_event_base , & btl_endpoint -> endpoint_send_event ,
323+ opal_event_set (opal_sync_event_base , & btl_endpoint -> endpoint_send_event ,
324324 btl_endpoint -> endpoint_sd ,
325325 OPAL_EV_WRITE ,
326326 mca_btl_tcp_endpoint_send_handler ,
@@ -509,7 +509,7 @@ void mca_btl_tcp_endpoint_accept(mca_btl_base_endpoint_t* btl_endpoint,
509509 assert (btl_endpoint -> endpoint_sd_next == -1 );
510510 btl_endpoint -> endpoint_sd_next = sd ;
511511
512- opal_event_evtimer_set (opal_event_base , & btl_endpoint -> endpoint_accept_event ,
512+ opal_event_evtimer_set (opal_sync_event_base , & btl_endpoint -> endpoint_accept_event ,
513513 mca_btl_tcp_endpoint_complete_accept , btl_endpoint );
514514 opal_event_add (& btl_endpoint -> endpoint_accept_event , & now );
515515}
@@ -570,7 +570,7 @@ static void mca_btl_tcp_endpoint_connected(mca_btl_base_endpoint_t* btl_endpoint
570570 MCA_BTL_TCP_ENDPOINT_DUMP (1 , btl_endpoint , true, "READY [endpoint_connected]" );
571571
572572 /* Create the send event in a persistent manner. */
573- opal_event_set (opal_event_base , & btl_endpoint -> endpoint_send_event ,
573+ opal_event_set (opal_sync_event_base , & btl_endpoint -> endpoint_send_event ,
574574 btl_endpoint -> endpoint_sd ,
575575 OPAL_EV_WRITE | OPAL_EV_PERSIST ,
576576 mca_btl_tcp_endpoint_send_handler ,
0 commit comments