Always clobber the stack in |-debuggerStep:|
authorRobert Sesek <rsesek@bluestatic.org>
Wed, 17 Feb 2010 06:43:24 +0000 (01:43 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Wed, 17 Feb 2010 06:43:24 +0000 (01:43 -0500)
Source/GDBpConnection.m

index bc52a99e459b29fa33d20b41c8cba6e8020192e7..fb1243bcc360e7ba095b634dd9583ed996e10c90 100644 (file)
@@ -679,14 +679,14 @@ void SocketAcceptCallback(CFSocketRef socket,
        
        // If this is the run command, tell the delegate that a bunch of updates
        // are coming. Also remove all existing stack routes and request a new stack.
-       if ([command isEqualToString:@"run"])
+       if (YES || [command isEqualToString:@"run"])
        {
-               [delegate clobberStack];
+               //[delegate clobberStack];
                [stackFrames_ removeAllObjects];
                [self send:[self createCommand:@"stack_depth"]];
        }
        
-       [self send:[self createRouted:[NSString stringWithFormat:@"%u", routingID] command:@"stack_get -d 0"]];
+       //[self send:[self createRouted:[NSString stringWithFormat:@"%u", routingID] command:@"stack_get -d 0"]];
 }
 
 /**