Class: Debugger::ThreadStopCommand
- Inherits:
-
Command
- Object
- Command
- Debugger::ThreadStopCommand
show all
- Defined in:
- lib/ruby-debug/commands/threads.rb
Overview
Constant Summary
Constants inherited
from Command
Command::DEF_OPTIONS
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
commands, #find, inherited, #initialize, load_commands, #match, method_missing, options, register_setting_get, register_setting_set, register_setting_var, settings, settings_map
Class Method Details
.help(cmd) ⇒ Object
102
103
104
105
106
|
# File 'lib/ruby-debug/commands/threads.rb', line 102
def help(cmd)
%{
th[read] stop <nnn>\t\tstop thread nnn
}
end
|
.help_command ⇒ Object
98
99
100
|
# File 'lib/ruby-debug/commands/threads.rb', line 98
def help_command
'thread'
end
|
Instance Method Details
#execute ⇒ Object
90
91
92
93
94
95
|
# File 'lib/ruby-debug/commands/threads.rb', line 90
def execute
c = parse_thread_num_for_cmd("thread stop", @match[1])
return unless c
c.suspend
display_context(c)
end
|
#regexp ⇒ Object
86
87
88
|
# File 'lib/ruby-debug/commands/threads.rb', line 86
def regexp
/^\s*th(?:read)?\s+stop\s*(\S*)\s*$/
end
|