From fe7f690ea7103ed2ee8f19f359c0cdc44adfa98f Mon Sep 17 00:00:00 2001 From: ferrol aderholdt Date: Fri, 1 Nov 2024 11:01:54 -0700 Subject: [PATCH] REVIEW: remove ref --- src/ucc/api/ucc.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ucc/api/ucc.h b/src/ucc/api/ucc.h index 8ec8a5832f..0d218265ad 100644 --- a/src/ucc/api/ucc.h +++ b/src/ucc/api/ucc.h @@ -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; @@ -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 @@ -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, @@ -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);