@@ -145,19 +145,19 @@ enum ucp_feature {
145
145
UCP_FEATURE_RMA = UCS_BIT (1 ),
146
146
147
147
/** Request 32-bit atomic operations support */
148
- UCP_FEATURE_AMO32 = UCS_BIT (2 ),
148
+ UCP_FEATURE_AMO32 = UCS_BIT (2 ),
149
149
150
150
/** Request 64-bit atomic operations support */
151
- UCP_FEATURE_AMO64 = UCS_BIT (3 ),
151
+ UCP_FEATURE_AMO64 = UCS_BIT (3 ),
152
152
153
153
/** Request interrupt notification support */
154
- UCP_FEATURE_WAKEUP = UCS_BIT (4 ),
154
+ UCP_FEATURE_WAKEUP = UCS_BIT (4 ),
155
155
156
156
/** Request stream support */
157
157
UCP_FEATURE_STREAM = UCS_BIT (5 ),
158
158
159
159
/** Request Active Message support */
160
- UCP_FEATURE_AM = UCS_BIT (6 ),
160
+ UCP_FEATURE_AM = UCS_BIT (6 ),
161
161
162
162
/**
163
163
* Request support mapping a peer's memory handle that was created by
@@ -648,14 +648,14 @@ enum ucp_send_am_flags {
648
648
*/
649
649
UCP_AM_SEND_FLAG_RNDV = UCS_BIT (2 ),
650
650
651
- /**
651
+ /**
652
652
* The flag indicates that the header should be copied to an internal buffer
653
653
* in case it's needed after the send function returns. If this flag is
654
654
* specified, the header can be released immediately after the send
655
655
* function returns, even if the non-blocking send request is not completed.
656
- */
656
+ */
657
657
UCP_AM_SEND_FLAG_COPY_HEADER = UCS_BIT (3 ),
658
-
658
+
659
659
/**
660
660
* Backward compatibility.
661
661
*/
@@ -3201,7 +3201,7 @@ ucs_status_t ucp_worker_set_am_recv_handler(ucp_worker_h worker,
3201
3201
* By default the header must be valid until
3202
3202
* the active message send operation completes.
3203
3203
* If the flag @ref UCP_AM_SEND_FLAG_COPY_HEADER
3204
- * is specified, the header is only required to be
3204
+ * is specified, the header is only required to be
3205
3205
* valid until this function call returns.
3206
3206
* @param [in] header_length Active message header length in bytes.
3207
3207
* @param [in] buffer Pointer to the data to be sent to the target node
@@ -3411,7 +3411,7 @@ ucs_status_ptr_t ucp_tag_send_sync_nbx(ucp_ep_h ep, const void *buffer,
3411
3411
* size @a count object on the endpoint @a ep. The routine is non-blocking
3412
3412
* and therefore returns immediately. The receive operation is considered
3413
3413
* complete when the message is delivered to the buffer. If the receive
3414
- * operation cannot be started, the routine returns an error.
3414
+ * operation cannot be started, then the routine returns an error.
3415
3415
*
3416
3416
* @param [in] ep UCP endpoint that is used for the receive operation.
3417
3417
* @param [in] buffer Pointer to the buffer that will receive the data.
@@ -3490,7 +3490,7 @@ ucs_status_ptr_t ucp_stream_recv_data_nb(ucp_ep_h ep, size_t *length);
3490
3490
* buffer. In order to notify the application about completion of the receive
3491
3491
* operation the UCP library will invoke the call-back @a cb when the received
3492
3492
* message is in the receive buffer and ready for application access. If the
3493
- * receive operation cannot be stated the routine returns an error.
3493
+ * receive operation cannot be started, then the routine returns an error.
3494
3494
*
3495
3495
* @param [in] worker UCP worker that is used for the receive operation.
3496
3496
* @param [in] buffer Pointer to the buffer to receive the data.
@@ -3577,7 +3577,7 @@ ucp_tag_message_h ucp_tag_probe_nb(ucp_worker_h worker, ucp_tag_t tag,
3577
3577
* is delivered to the @a buffer. In order to notify the application about
3578
3578
* completion of the receive operation the UCP library will invoke the
3579
3579
* call-back @a cb when the received message is in the receive buffer and ready
3580
- * for application access. If the receive operation cannot be started the
3580
+ * for application access. If the receive operation cannot be started, then the
3581
3581
* routine returns an error.
3582
3582
*
3583
3583
* @param [in] worker UCP worker that is used for the receive operation.
0 commit comments