Browse Source

Fixed SD2-672: Applications using DynamicProxy cannot be debugged

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1065 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 20 years ago
parent
commit
7a3087b6a3
  1. 2
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs
  2. 2
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs

2
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs

@ -251,7 +251,7 @@ namespace Debugger
ExitCallback_Paused(PausedReason.DebuggerError); ExitCallback_Paused(PausedReason.DebuggerError);
} }
public void UpdateModuleSymbols(ICorDebugAppDomain pAppDomain, ICorDebugModule pModule, Debugger.Interop.CorDebug.IStream pSymbolStream) public void UpdateModuleSymbols(ICorDebugAppDomain pAppDomain, ICorDebugModule pModule, IStream pSymbolStream)
{ {
EnterCallback("UpdateModuleSymbols", pAppDomain); EnterCallback("UpdateModuleSymbols", pAppDomain);

2
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs

@ -316,7 +316,7 @@ namespace Debugger
realCallback.UpdateModuleSymbols( realCallback.UpdateModuleSymbols(
MTA2STA.MarshalIntPtrTo<ICorDebugAppDomain>(pAppDomain), MTA2STA.MarshalIntPtrTo<ICorDebugAppDomain>(pAppDomain),
MTA2STA.MarshalIntPtrTo<ICorDebugModule>(pModule), MTA2STA.MarshalIntPtrTo<ICorDebugModule>(pModule),
MTA2STA.MarshalIntPtrTo<Debugger.Interop.CorDebug.IStream>(pSymbolStream) MTA2STA.MarshalIntPtrTo<IStream>(pSymbolStream)
); );
}); });
} }

Loading…
Cancel
Save