mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 18:57:18 +08:00 
			
		
		
		
	Implement 'trace' subcommand
Allows a user to execute `dlv trace [regexp]` and Delve will execute the program and output information on functions matching [regexp].
This commit is contained in:
		| @ -66,7 +66,7 @@ func (c *RPCClient) Continue() <-chan *api.DebuggerState { | ||||
| 				state.Err = fmt.Errorf("Process %d has exited with status %d", c.ProcessPid(), state.ExitStatus) | ||||
| 			} | ||||
| 			ch <- state | ||||
| 			if err != nil || state.Breakpoint == nil || !state.Breakpoint.Tracepoint { | ||||
| 			if err != nil || state.Exited || state.Breakpoint == nil || !state.Breakpoint.Tracepoint { | ||||
| 				close(ch) | ||||
| 				return | ||||
| 			} | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Derek Parker
					Derek Parker