/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNETLinux/MonoDebugging/Debugger/EventType.cs
35 строк
652 B
Ivan Bondarev
missing files for debugger
18 апр 2023, 18:53
18 апр 2023, 18:53
d0397a4
Код
Авторство
О чём код?
namespace Mono.Debugger.Soft { // Keep it in sync with debugger-agent.h public enum EventType { VMStart = 0, VMDeath = 1, ThreadStart = 2, ThreadDeath = 3, AppDomainCreate = 4, AppDomainUnload = 5, MethodEntry = 6, MethodExit = 7, AssemblyLoad = 8, AssemblyUnload = 9, Breakpoint = 10, Step = 11, TypeLoad = 12, Exception = 13, KeepAlive = 14, // // System.Diagnostics.Debugger.Break () // UserBreak = 15, // // System.Diagnostics.Debugger.Log () // UserLog = 16, // Fatal error handling Crash = 17, EnCUpdate = 18, MethodUpdate = 19, // Not part of the wire protocol VMDisconnect = 99 } }