Skip to content

Commit

Permalink
REVIEW: remove ref
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrol aderholdt committed Nov 1, 2024
1 parent c6c02b5 commit fe7f690
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ucc/api/ucc.h
Original file line number Diff line number Diff line change
Expand Up @@ -2226,9 +2226,9 @@ typedef void *ucc_mem_map_mem_h;
* @ingroup UCC_DATATYPE
*/
typedef enum {
UCC_MEM_MAP_EXPORT = 0, /*!< Indicate @ref ucc_mem_map() should export
UCC_MEM_MAP_EXPORT = 0, /*!< Indicate ucc_mem_map() should export
memory handles from TLs used by context */
UCC_MEM_MAP_IMPORT = 1 /*!< Indicate @ref ucc_mem_map() should import
UCC_MEM_MAP_IMPORT = 1 /*!< Indicate ucc_mem_map() should import
memory handles from user memory handle */
} ucc_mem_map_flags_t;

Expand All @@ -2238,7 +2238,7 @@ typedef enum {
*
* This routine maps a user-specified memory segment with a ucc_context_h. The
* segment is considered "mapped" with the context until either the user calls
* @ref ucc_mem_unmap or @ref ucc_context_destroy(). A handle to the mapped
* ucc_mem_unmap or ucc_context_destroy(). A handle to the mapped
* memory is provided in memh. If the flag UCC_MEM_MAP_EXPORT is used, the
* memory will be mapped and memory handles from TLs will be generated and
* stored in the memh. If the flag UCC_MEM_MAP_IMPORT is used, the user must
Expand All @@ -2250,7 +2250,7 @@ typedef enum {
* memory to map
* @params [inout] *memh Handle for the registered memory
*
* @return Error code as defined by @ref ucc_status_t.
* @return Error code as defined by ucc_status_t.
*/

ucc_status_t ucc_mem_map(ucc_context_h context, ucc_mem_map_flags_t flags,
Expand All @@ -2264,7 +2264,7 @@ ucc_status_t ucc_mem_map(ucc_context_h context, ucc_mem_map_flags_t flags,
*
* @params [in] *memh Handle of the registered memory
*
* @return Error code as defined by @ref ucc_status_t.
* @return Error code as defined by ucc_status_t.
*/
ucc_status_t ucc_mem_unmap(ucc_mem_map_mem_h *memh);

Expand Down

0 comments on commit fe7f690

Please sign in to comment.