2009-11-02 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Mon, 2 Nov 2009 16:12:33 +0000 (16:12 -0000)
committerZoltan Varga <vargaz@gmail.com>
Mon, 2 Nov 2009 16:12:33 +0000 (16:12 -0000)
commitbb62e1b49a6e6f6da4904779d3a68755a4f5017c
tree0858606ab8da01e9a62228b5c11cb8bc7d34b21b
parent84ffc71a153cfa7e36e0210fe2a2d3f5fde879ca
2009-11-02  Zoltan Varga  <vargaz@gmail.com>

* Makefile: Add Mono.Debugger.Soft.

In Mono.Debugger.Soft:

2009-11-02  Zoltan Varga  <vargaz@gmail.com>

* New directory containing the managed interface to the soft-mode debugger.

svn path=/trunk/mcs/; revision=145204
124 files changed:
mcs/class/ChangeLog
mcs/class/Makefile
mcs/class/Mono.Debugger.Soft/ChangeLog [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Makefile [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft.dll.sources [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/AppDomainCreateEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/AppDomainMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/AppDomainUnloadEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ArrayMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/AssemblyLoadEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/AssemblyMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/BreakpointEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/BreakpointEventRequest.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/Connection.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/CustomAttributeDataMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/CustomAttributeNamedArgumentMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/CustomAttributeTypedArgumentMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/DataConverter.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/EnumMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/Event.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/EventQueueImpl.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/EventRequest.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/EventType.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ExceptionEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ExceptionEventRequest.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/FieldInfoMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ILInstruction.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/IMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/InvalidStackFrameException.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/InvocationException.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/LocalVariable.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/Location.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/MethodBodyMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/MethodEntryEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/MethodEntryEventRequest.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/MethodExitEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/MethodExitEventRequest.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/MethodMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/Mirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ModuleMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ObjectCollectedException.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ObjectMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ParameterInfoMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/PrimitiveValue.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/PropertyInfoMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/StackFrame.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/StepEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/StepEventRequest.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/StringMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/StructMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/SuspendPolicy.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ThreadDeathEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ThreadMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/ThreadStartEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/TypeLoadEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/TypeMirror.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VMDeathEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VMDisconnectEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VMDisconnectedException.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VMMismatchException.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VMStartEvent.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/Value.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VirtualMachine.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/Mono.Debugger/VirtualMachineManager.cs [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/AppDomainMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ArrayMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/AssemblyLoadEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/AssemblyMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/BreakpointEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/BreakpointEventRequest.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/CustomAttributeDataMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/CustomAttributeNamedArgumentMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/CustomAttributeTypedArgumentMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/EnumMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ErrorCode.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ErrorHandlerEventArgs.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/Event.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/EventRequest.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/EventType.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/FieldInfoMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ILInstruction.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/IMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/InvalidStackFrameException.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/InvocationException.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/LaunchOptions.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/LocalVariable.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/Location.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/MethodBodyMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/MethodEntryEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/MethodEntryEventRequest.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/MethodExitEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/MethodExitEventRequest.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/MethodMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/Mirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ModuleMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ObjectCollectedException.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ObjectMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ParameterInfoMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/PrimitiveValue.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/PropertyInfoMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StackFrame.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StackFrameType.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StepDepth.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StepEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StepEventRequest.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StepSize.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StringMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/StructMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/SuspendPolicy.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ThreadDeathEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ThreadMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/ThreadStartEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/TypeLoadEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/TypeMirror.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VMDeathEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VMDisconnectEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VMDisconnectedException.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VMMismatchException.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VMStartEvent.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/Value.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VirtualMachine.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/Mono.Debugger/VirtualMachineManager.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/index.xml [new file with mode: 0644]
mcs/class/Mono.Debugger.Soft/doc/ns-Mono.Debugger.xml [new file with mode: 0644]