Add CloseTrace calls to flush the file

This commit is contained in:
Mukul Sabharwal 2017-04-12 11:27:52 -07:00
Родитель dbf7b7c153
Коммит 408dbc1801
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -76,6 +76,15 @@
jsonWriter.WriteEndObject();
GC.KeepAlive(fileSessions);
for (int i = 0; i < count; ++i)
{
unsafe
{
Etw.CloseTrace(handles[i]);
}
}
return true;
}