Skip to content

Commit 5eaac97

Browse files
committed
remove "__urdlllocal" in msan_ddi
1 parent d9f941a commit 5eaac97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/loader/layers/sanitizer/msan/msan_ddi.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ ur_result_t urUSMDeviceAlloc(
105105

106106
///////////////////////////////////////////////////////////////////////////////
107107
/// @brief Intercept function for urUSMHostAlloc
108-
__urdlllocal ur_result_t UR_APICALL urUSMHostAlloc(
108+
ur_result_t UR_APICALL urUSMHostAlloc(
109109
ur_context_handle_t hContext, ///< [in] handle of the context object
110110
const ur_usm_desc_t
111111
*pUSMDesc, ///< [in][optional] USM memory allocation descriptor
@@ -123,7 +123,7 @@ __urdlllocal ur_result_t UR_APICALL urUSMHostAlloc(
123123

124124
///////////////////////////////////////////////////////////////////////////////
125125
/// @brief Intercept function for urUSMSharedAlloc
126-
__urdlllocal ur_result_t UR_APICALL urUSMSharedAlloc(
126+
ur_result_t UR_APICALL urUSMSharedAlloc(
127127
ur_context_handle_t hContext, ///< [in] handle of the context object
128128
ur_device_handle_t hDevice, ///< [in] handle of the device object
129129
const ur_usm_desc_t *
@@ -142,7 +142,7 @@ __urdlllocal ur_result_t UR_APICALL urUSMSharedAlloc(
142142

143143
///////////////////////////////////////////////////////////////////////////////
144144
/// @brief Intercept function for urUSMFree
145-
__urdlllocal ur_result_t UR_APICALL urUSMFree(
145+
ur_result_t UR_APICALL urUSMFree(
146146
ur_context_handle_t hContext, ///< [in] handle of the context object
147147
void *pMem ///< [in] pointer to USM memory object
148148
) {

0 commit comments

Comments
 (0)