@@ -179,21 +179,25 @@ def getUserEventDataTypeMapping(runtimeFlavor):
179
179
if runtimeFlavor .coreclr :
180
180
return coreCLRUserEventDataTypeMapping
181
181
# elif runtimeFlavor.mono:
182
- # return monoEventPipeDataTypeMapping
182
+ # return monoUserEventDataTypeMapping
183
183
# elif runtimeFlavor.nativeaot:
184
- # return aotEventPipeDataTypeMapping
184
+ # return aotUserEventDataTypeMapping
185
185
186
186
def getUserEventLogLevelMapping (runtimeFlavor ):
187
187
if runtimeFlavor .coreclr :
188
188
return coreCLRUserEventLogLevelMapping
189
+ # elif runtimeFlavor.mono:
190
+ # return monoUserEventLogLevelMapping
191
+ # elif runtimeFlavor.nativeaot:
192
+ # return aotUserEventLogLevelMapping
189
193
190
194
def getArrayDataTypeMapping (runtimeFlavor ):
191
195
if runtimeFlavor .coreclr :
192
196
return coreCLRUserEventArrayTypeMapping
193
197
# elif runtimeFlavor.mono:
194
- # return monoEventPipeDataTypeMapping
198
+ # return monoUserEventArrayTypeMapping
195
199
# elif runtimeFlavor.nativeaot:
196
- # return aotEventPipeDataTypeMapping
200
+ # return aotUserEventArrayTypeMapping
197
201
198
202
def getEventPipeDataTypeMapping (runtimeFlavor ):
199
203
if runtimeFlavor .coreclr :
@@ -210,7 +214,8 @@ def getPalDataTypeMapping(runtimeFlavor):
210
214
return monoPalDataTypeMapping
211
215
elif runtimeFlavor .nativeaot :
212
216
return aotPalDataTypeMapping
213
- #maybe need to add getUserEventDataTypeMapping
217
+
218
+
214
219
def includeProvider (providerName , runtimeFlavor ):
215
220
if (runtimeFlavor .coreclr or runtimeFlavor .nativeaot ) and providerName == "Microsoft-DotNETRuntimeMonoProfiler" :
216
221
return False
0 commit comments