Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
diff options
context:
space:
mode:
authorThays Grazia <thaystg@gmail.com>2020-04-09 17:41:11 +0300
committerGitHub <noreply@github.com>2020-04-09 17:41:11 +0300
commitf51cb7ad85a143b8af869ee1800b7beca442856e (patch)
treed9afaffda2e6c227d9050e8ce1e2c0f7f9be7565 /mcs/class
parent62414d588b012701a4ac499af048fc87b31b4896 (diff)
[2020-02][debugger] Bump protocol for multi threaded single step implementation (#19437) (#19477)
As suggested by jbevain we should bump the protocol to implement this. (#19437) Backport https://github.com/mono/mono/pull/19437/
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs2
-rw-r--r--mcs/class/Mono.Debugger.Soft/Test/dtest.cs3
2 files changed, 1 insertions, 4 deletions
diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
index 252959eb361..de8604c29c0 100644
--- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
+++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
@@ -439,7 +439,7 @@ namespace Mono.Debugger.Soft
* with newer runtimes, and vice versa.
*/
internal const int MAJOR_VERSION = 2;
- internal const int MINOR_VERSION = 56;
+ internal const int MINOR_VERSION = 57;
enum WPSuspendPolicy {
NONE = 0,
diff --git a/mcs/class/Mono.Debugger.Soft/Test/dtest.cs b/mcs/class/Mono.Debugger.Soft/Test/dtest.cs
index a8f12094bbd..8c953f6fe3d 100644
--- a/mcs/class/Mono.Debugger.Soft/Test/dtest.cs
+++ b/mcs/class/Mono.Debugger.Soft/Test/dtest.cs
@@ -65,9 +65,6 @@ public class DebuggerTests
Event GetNextEvent () {
var es = vm.GetNextEventSet ();
Assert.AreEqual (1, es.Events.Length);
- if (step_req != null && es [0] != null && es [0].Request != null && es [0].Request is StepEventRequest && ((StepEventRequest)es [0].Request).GetId() != step_req.GetId()) {
- step_req = ((StepEventRequest)es [0].Request);
- }
return es [0];
}