Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
**** Merged r110908 from trunk ****
Browse files Browse the repository at this point in the history
svn path=/branches/mono-2-0/debugger/; revision=110911
  • Loading branch information
Martin Baulig committed Aug 19, 2008
1 parent aec9e23 commit 777a7f3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2008-08-19 Martin Baulig <martin@ximian.com>

* backend/ThreadManager.cs: Fixed a hard to find race condition.

2008-08-14 Martin Baulig <martin@ximian.com>

* symbolwriter/MdbSymbolReader.cs: Add `-verbose' command line
Expand Down
5 changes: 3 additions & 2 deletions backend/SingleSteppingEngine.cs
Expand Up @@ -2654,8 +2654,9 @@ protected override void DoExecute ()
out TargetEventArgs args)
{
Report.Debug (DebugFlags.SSE,
"{0} executed instruction {1} at {2}: {3}",
sse, Instruction, inferior.CurrentFrame, cevent);
"{0} executed instruction at {1}: {2}\n{3}",
sse, inferior.CurrentFrame, cevent,
TargetBinaryReader.HexDump (Instruction));

args = null;
if (pushed_code_buffer) {
Expand Down
3 changes: 2 additions & 1 deletion backend/ThreadManager.cs
Expand Up @@ -330,7 +330,8 @@ void engine_thread_main ()

check_pending_events ();

engine_event.Set ();
if (command == null)
engine_event.Set ();
RequestWait ();
}

Expand Down

0 comments on commit 777a7f3

Please sign in to comment.