ruby-debug-base 0.10.0-mswin32 → 0.10.4-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +129 -2
- data/README +43 -6
- data/Rakefile +126 -35
- data/VERSION +3 -0
- data/ext/breakpoint.c +582 -0
- data/ext/extconf.rb +2 -0
- data/ext/ruby_debug.c +229 -773
- data/ext/ruby_debug.h +123 -0
- data/ext/win32/Makefile +31 -23
- data/ext/win32/breakpoint.o +0 -0
- data/ext/win32/ruby_debug.o +0 -0
- data/ext/win32/ruby_debug.so +0 -0
- data/lib/ChangeLog +599 -580
- data/lib/ruby-debug-base.rb +108 -45
- data/lib/ruby_debug.so +0 -0
- data/test/{test-ruby-debug-base.rb → base/base.rb} +27 -29
- data/test/base/binding.rb +31 -0
- data/test/base/catchpoint.rb +26 -0
- data/test/base/reload_bug.rb +8 -0
- metadata +73 -41
- data/ext/ChangeLog +0 -1110
data/ext/ChangeLog
DELETED
@@ -1,1110 +0,0 @@
|
|
1
|
-
2008-02-02 09:27 Rocky Bernstein
|
2
|
-
|
3
|
-
* trunk/CHANGES, ruby_debug.c, trunk/lib/ruby-debug-base.rb,
|
4
|
-
trunk/test/gcd-dbg.rb: Remove Debugger.init and fold options
|
5
|
-
parameter into Debugger.start.
|
6
|
-
Old Debugger.start has been renamed Deebugger.start_
|
7
|
-
|
8
|
-
2008-02-01 03:09 Rocky Bernstein
|
9
|
-
|
10
|
-
* trunk/CHANGES, trunk/Rakefile, trunk/bin/rdebug,
|
11
|
-
trunk/cli/ruby-debug/commands/catchpoint.rb,
|
12
|
-
trunk/cli/ruby-debug/commands/info.rb,
|
13
|
-
trunk/cli/ruby-debug/processor.rb, breakpoint.c, ruby_debug.c,
|
14
|
-
ruby_debug.h, trunk/test/base/base.rb,
|
15
|
-
trunk/test/base/catchpoint.rb, trunk/test/ctrl.right,
|
16
|
-
trunk/test/info.right: Allow multiple exceptions to be caught.
|
17
|
-
|
18
|
-
INCOMPATIBLE CHANGE: varible Debugger.catchpoint a String was
|
19
|
-
turned
|
20
|
-
into Debugger.catchpoints, a Hash. Debugger.catchpoint= no longer
|
21
|
-
exists. Debugger.set_catchpoint was turned into
|
22
|
-
Debugger.add_catchpoint
|
23
|
-
|
24
|
-
"info catch" added.
|
25
|
-
|
26
|
-
INCOMPATIBLE CHANGE: variable Debugger.catchpoint is now
|
27
|
-
Debugger.catchpoints
|
28
|
-
which is a now hash rather than a String. Debugger.catchpoint= no
|
29
|
-
longer exists.
|
30
|
-
|
31
|
-
A catchpoint ruby-debug-base test added. use unshift in requires.
|
32
|
-
|
33
|
-
rdebug: --post-mortem now really catches uncaught exceptions and
|
34
|
-
brings you to post-mortem handling.
|
35
|
-
|
36
|
-
2008-01-31 16:30 Rocky Bernstein
|
37
|
-
|
38
|
-
* trunk/ChangeLog, ruby_debug.c, trunk/lib/ChangeLog: Leave
|
39
|
-
ruby_debug.c this way for now.
|
40
|
-
|
41
|
-
2008-01-31 16:24 Rocky Bernstein
|
42
|
-
|
43
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/processor.rb, ruby_debug.c,
|
44
|
-
trunk/lib/ChangeLog, trunk/test/raise.right,
|
45
|
-
trunk/test/tdebug.rb: ruby_debug.c: more adventures in exception
|
46
|
-
handling
|
47
|
-
processor.rb: Removal of crash when annotate is on. Need to fix
|
48
|
-
the source of the
|
49
|
-
problem though.
|
50
|
-
|
51
|
-
2008-01-31 03:01 Rocky Bernstein
|
52
|
-
|
53
|
-
* trunk/bin/rdebug, ruby_debug.c, trunk/test/helper.rb,
|
54
|
-
trunk/test/quit.right, trunk/test/tdebug.rb,
|
55
|
-
trunk/test/test-quit.rb, trunk/test/test-raise.rb: Have
|
56
|
-
Debug.load recover from uncaught error raised in a debugged
|
57
|
-
program.
|
58
|
-
Go over regression tests.
|
59
|
-
|
60
|
-
2008-01-13 21:51 Rocky Bernstein
|
61
|
-
|
62
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/breakpoints.rb,
|
63
|
-
trunk/emacs/rdebug-core.el, trunk/emacs/rdebug-frames.el,
|
64
|
-
trunk/emacs/rdebug-source.el, breakpoint.c, trunk/lib/ChangeLog:
|
65
|
-
Some stack -> frame renaming
|
66
|
-
ext/breakpoint.c: put methods in alpha order (to help with
|
67
|
-
reference man)
|
68
|
-
breakpoints.rb: one print -> errmsg
|
69
|
-
|
70
|
-
2008-01-10 10:34 Rocky Bernstein
|
71
|
-
|
72
|
-
* trunk/CHANGES, trunk/ChangeLog,
|
73
|
-
trunk/cli/ruby-debug/commands/condition.rb,
|
74
|
-
trunk/cli/ruby-debug/commands/enable.rb,
|
75
|
-
trunk/cli/ruby-debug/processor.rb, trunk/doc/ruby-debug.texi,
|
76
|
-
trunk/emacs/Makefile.am, trunk/emacs/rdebug-breaks.el,
|
77
|
-
trunk/emacs/rdebug-regexp.el, trunk/emacs/test/test-regexp.el,
|
78
|
-
breakpoint.c, trunk/lib/ChangeLog, trunk/test/condition.cmd,
|
79
|
-
trunk/test/condition.right, trunk/test/test-breakpoints.rb,
|
80
|
-
trunk/test/test-condition.rb: Add condition command.
|
81
|
-
|
82
|
-
2008-01-07 04:29 Rocky Bernstein
|
83
|
-
|
84
|
-
* trunk/ChangeLog, trunk/Makefile.am, ChangeLog,
|
85
|
-
trunk/lib/ChangeLog: Split out ChangeLogs better (I hope).
|
86
|
-
|
87
|
-
2008-01-06 20:56 Rocky Bernstein
|
88
|
-
|
89
|
-
* trunk/ChangeLog, trunk/bin/rdebug,
|
90
|
-
trunk/cli/ruby-debug/processor.rb, trunk/emacs/rdebug-core.el,
|
91
|
-
trunk/emacs/rdebug-regexp.el, trunk/emacs/test/test-regexp.el,
|
92
|
-
ChangeLog, trunk/lib/ChangeLog, trunk/test/emacs-basic.cmd,
|
93
|
-
trunk/test/emacs-basic.right, trunk/test/quit.right,
|
94
|
-
trunk/test/tdebug.rb, trunk/test/test-emacs-basic.rb:
|
95
|
-
test/*-emacs-basic*, tdebug: Add test of running in Emacs without
|
96
|
-
annotations.
|
97
|
-
|
98
|
-
emacs/*.el: make regexp tests work again, move regexp to from
|
99
|
-
core to regexp.
|
100
|
-
Add an annotate regexp test.
|
101
|
-
|
102
|
-
processor.rb: Remove some anotation print from bleeding into
|
103
|
-
output
|
104
|
-
when annotations are not wanted. Reinstate "Program finished" in
|
105
|
-
annotations and outside (rdebug).
|
106
|
-
|
107
|
-
2008-01-06 18:55 Rocky Bernstein
|
108
|
-
|
109
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/processor.rb,
|
110
|
-
trunk/emacs/Makefile.am, trunk/emacs/rdebug-core.el,
|
111
|
-
trunk/emacs/test/test-indent.el, ChangeLog, trunk/lib/ChangeLog,
|
112
|
-
trunk/test/annotate.right, trunk/test/output.right: Create
|
113
|
-
Processor class and subclass that. Perhaps a mixin would be good.
|
114
|
-
Remove annotation output bleanding when annotate is off.
|
115
|
-
Try to reduce the mess annotations is adding to processor.rb
|
116
|
-
rdebug-core.el: fix indentation to pass the regression test
|
117
|
-
Anders added
|
118
|
-
Makefile.am: Add rdebug-source.el to distribution.
|
119
|
-
Make sure "rake test"
|
120
|
-
|
121
|
-
2008-01-06 02:15 Rocky Bernstein
|
122
|
-
|
123
|
-
* trunk/ChangeLog, trunk/bin/rdebug,
|
124
|
-
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
125
|
-
trunk/cli/ruby-debug/commands/control.rb,
|
126
|
-
trunk/cli/ruby-debug/commands/save.rb,
|
127
|
-
trunk/cli/ruby-debug/commands/script.rb,
|
128
|
-
trunk/cli/ruby-debug/interface.rb,
|
129
|
-
trunk/cli/ruby-debug/processor.rb, ChangeLog,
|
130
|
-
trunk/lib/ChangeLog: Some work on saving state across a restart.
|
131
|
-
More work is needed on the
|
132
|
-
script command to get this working. The save-file name is now
|
133
|
-
optional. save.rb split off from script.rb Display expressions
|
134
|
-
and
|
135
|
-
some settings are now captured in the save/restore file.
|
136
|
-
Add interface.finalize - things that need to be done before quit
|
137
|
-
or
|
138
|
-
restart.
|
139
|
-
|
140
|
-
2008-01-05 21:16 Rocky Bernstein
|
141
|
-
|
142
|
-
* trunk/ChangeLog, trunk/bin/rdebug,
|
143
|
-
trunk/cli/ruby-debug/interface.rb,
|
144
|
-
trunk/cli/ruby-debug/processor.rb, ChangeLog,
|
145
|
-
trunk/lib/ChangeLog, trunk/test/annotate.right,
|
146
|
-
trunk/test/output.cmd, trunk/test/output.right,
|
147
|
-
trunk/test/quit.right, trunk/test/tdebug.rb,
|
148
|
-
trunk/test/test-output.rb: More work to make annotate more like
|
149
|
-
gdb's. starting/stopping/exiting
|
150
|
-
should be more similar. Some code has been commented out until we
|
151
|
-
get
|
152
|
-
the Emacs interface to match. See "FIXME: ANNOTATE" in
|
153
|
-
processor.rb.
|
154
|
-
Also regression tests for output and annotate currently fail for
|
155
|
-
this
|
156
|
-
reason.
|
157
|
-
|
158
|
-
2008-01-02 20:35 Rocky Bernstein
|
159
|
-
|
160
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/breakpoints.rb,
|
161
|
-
trunk/cli/ruby-debug/helper.rb, ChangeLog, trunk/lib/ChangeLog:
|
162
|
-
helper.rb: add regexp for a position. TODO: add parsing routine
|
163
|
-
and use in
|
164
|
-
various commands
|
165
|
-
|
166
|
-
2008-01-02 14:41 Rocky Bernstein
|
167
|
-
|
168
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/processor.rb,
|
169
|
-
trunk/emacs/rdebug.el, ChangeLog, trunk/lib/ChangeLog,
|
170
|
-
trunk/test/annotate.right: processor.rb: Redo where
|
171
|
-
starting/exiting annotations are done.
|
172
|
-
rdebug.el: back off on setting output command for now.
|
173
|
-
|
174
|
-
2008-01-01 15:23 Rocky Bernstein
|
175
|
-
|
176
|
-
* trunk/ChangeLog, trunk/bin/rdebug, ChangeLog,
|
177
|
-
trunk/lib/ChangeLog: Fix --emacs to do --no-quit properly.
|
178
|
-
|
179
|
-
2008-01-01 09:00 Rocky Bernstein
|
180
|
-
|
181
|
-
* trunk/ChangeLog, ChangeLog, breakpoint.c, ruby_debug.c,
|
182
|
-
ruby_debug.h, trunk/lib/ChangeLog: Remove RDoc warnings caused
|
183
|
-
because C files have been split up.
|
184
|
-
|
185
|
-
2008-01-01 05:51 Rocky Bernstein
|
186
|
-
|
187
|
-
* trunk/ChangeLog, trunk/emacs/Makefile.am,
|
188
|
-
trunk/emacs/test/test-indent.el,
|
189
|
-
trunk/emacs/test/test-reindent.el, ChangeLog,
|
190
|
-
trunk/lib/ChangeLog: reindent -> indent. Makefile.am: wasn't
|
191
|
-
including all test files.
|
192
|
-
|
193
|
-
2007-12-31 06:26 Rocky Bernstein
|
194
|
-
|
195
|
-
* trunk/ChangeLog, trunk/Rakefile, ChangeLog, trunk/lib/ChangeLog:
|
196
|
-
Rakefile: add spit-off C files to ruby-debug-base gem.
|
197
|
-
|
198
|
-
2007-12-31 06:23 Rocky Bernstein
|
199
|
-
|
200
|
-
* trunk/ChangeLog, trunk/emacs/rdebug-test-cmd.el, ChangeLog,
|
201
|
-
trunk/lib/ChangeLog: rdebug-test-cmd.el: Indentation
|
202
|
-
|
203
|
-
2007-12-31 06:20 Rocky Bernstein
|
204
|
-
|
205
|
-
* breakpoint.c: Was missing check_breakpoint_expression().
|
206
|
-
|
207
|
-
2007-12-31 06:06 Rocky Bernstein
|
208
|
-
|
209
|
-
* ChangeLog, breakpoint.c, ruby_debug.c, ruby_debug.h: Split off
|
210
|
-
breakpoint code from ruby_debug.c; add common ruby_debug.h
|
211
|
-
header Alas this means some statics are now externs and one
|
212
|
-
inline was
|
213
|
-
dropped. In some cases though moving static to extern might be
|
214
|
-
desirable for other packages that want to hook into ruby_debug.
|
215
|
-
Start to preface the global ruby_debug variables with rdebug.
|
216
|
-
|
217
|
-
2007-12-29 13:31 Rocky Bernstein
|
218
|
-
|
219
|
-
* trunk/ChangeLog, trunk/bin/rdebug,
|
220
|
-
trunk/cli/ruby-debug/command.rb, ChangeLog, trunk/lib/ChangeLog,
|
221
|
-
trunk/test/helper.rb, trunk/test/noquit.right,
|
222
|
-
trunk/test/null.rb, trunk/test/quit.cmd, trunk/test/quit.right,
|
223
|
-
trunk/test/tdebug.rb: Remove looping on quit. "-n" is broken so
|
224
|
-
remove it for now.
|
225
|
-
|
226
|
-
2007-12-28 15:33 Rocky Bernstein
|
227
|
-
|
228
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/display.rb,
|
229
|
-
trunk/cli/ruby-debug/commands/info.rb,
|
230
|
-
trunk/cli/ruby-debug/processor.rb, ChangeLog,
|
231
|
-
trunk/lib/ChangeLog, trunk/test/annotate.right,
|
232
|
-
trunk/test/display.cmd, trunk/test/display.right: info.rb:
|
233
|
-
Incorrect test for no display expressions.
|
234
|
-
display.rb: Grammar thing.
|
235
|
-
processor.rb: Slightly cleaner code
|
236
|
-
test/* more/better tests.
|
237
|
-
|
238
|
-
2007-12-27 21:03 Rocky Bernstein
|
239
|
-
|
240
|
-
* trunk/ChangeLog, trunk/emacs/rdebug-track.el, ChangeLog,
|
241
|
-
trunk/lib/ChangeLog: Be more agressive about resetting
|
242
|
-
gud-last-frame and
|
243
|
-
gud-last-last-frame. These foul up tracking when debugging is
|
244
|
-
interrupted.
|
245
|
-
We probably need a special "reset" command.
|
246
|
-
|
247
|
-
2007-12-26 18:35 Rocky Bernstein
|
248
|
-
|
249
|
-
* trunk/ChangeLog, ChangeLog, ruby_debug.c, trunk/lib/ChangeLog:
|
250
|
-
Version number games - maybe 0.10.1 is better.
|
251
|
-
|
252
|
-
2007-12-26 00:04 Rocky Bernstein
|
253
|
-
|
254
|
-
* ruby_debug.c: 2nd attempt to deal with *both* problems Timur
|
255
|
-
reported.
|
256
|
-
|
257
|
-
1. Catchpoint is never called when program raises an object of
|
258
|
-
type
|
259
|
-
Exception. So, my exceptional breakpoints doesn't work for
|
260
|
-
Exception
|
261
|
-
class.
|
262
|
-
|
263
|
-
|
264
|
-
2. When SystemExit exception is raised debugger become stopped
|
265
|
-
and
|
266
|
-
stop method is called as many times, as a number of threads
|
267
|
-
running in
|
268
|
-
application. For example, in next code debugger become stopped in
|
269
|
-
rescue block, but program continues its execution.
|
270
|
-
|
271
|
-
2007-12-25 23:40 Rocky Bernstein
|
272
|
-
|
273
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/stepping.rb,
|
274
|
-
trunk/doc/ruby-debug.texi, ChangeLog, trunk/lib/ChangeLog,
|
275
|
-
trunk/test/stepping.cmd, trunk/test/stepping.right: Add step- and
|
276
|
-
step+. Document as well as the new toggle command.
|
277
|
-
|
278
|
-
2007-12-25 23:36 Rocky Bernstein
|
279
|
-
|
280
|
-
* ruby_debug.c: Expermimental patch to address a problems reported
|
281
|
-
by Timur Shipilov,
|
282
|
-
Software engineer, Xored Software Inc.:
|
283
|
-
|
284
|
-
When SystemExit exception is raised debugger become stopped and
|
285
|
-
stop method is called as many times, as a number of threads
|
286
|
-
running in
|
287
|
-
application. For example, in next code debugger become stopped in
|
288
|
-
rescue block, but program continues its execution.
|
289
|
-
|
290
|
-
Example:
|
291
|
-
|
292
|
-
# Stuff to set up debugger
|
293
|
-
begin
|
294
|
-
# if you throw another Exception here, all will be fine
|
295
|
-
exit
|
296
|
-
sleep 20
|
297
|
-
rescue Exception
|
298
|
-
puts 'This line is not traced'
|
299
|
-
end
|
300
|
-
puts 'And this too'
|
301
|
-
|
302
|
-
# Debugger.stop was implicitly called when SystemExit exception
|
303
|
-
was thrown
|
304
|
-
# So, there will be an runtime error
|
305
|
-
Debugger.stop
|
306
|
-
|
307
|
-
2007-12-25 09:55 Rocky Bernstein
|
308
|
-
|
309
|
-
* trunk/ChangeLog, trunk/cli/ruby-debug/commands/stepping.rb,
|
310
|
-
trunk/doc/ruby-debug.texi, trunk/emacs/rdebug-core.el, ChangeLog,
|
311
|
-
trunk/lib/ChangeLog: Small doc fixes.
|
312
|
-
|
313
|
-
2007-12-25 07:51 Rocky Bernstein
|
314
|
-
|
315
|
-
* trunk/ChangeLog, ChangeLog, trunk/lib/ChangeLog: Last commit
|
316
|
-
before 0.10.0 release.
|
317
|
-
|
318
|
-
2007-12-25 02:51 Rocky Bernstein
|
319
|
-
|
320
|
-
* trunk/AUTHORS, trunk/ChangeLog, trunk/README, ChangeLog,
|
321
|
-
trunk/lib/ChangeLog, trunk/test/breakpoints.cmd,
|
322
|
-
trunk/test/breakpoints.right: breakpoints.*: main -> Object. Add
|
323
|
-
bad Class name test
|
324
|
-
AUTHOR: Add Anders
|
325
|
-
README: note ruby-debug-extra. More precise (I think)
|
326
|
-
|
327
|
-
2007-12-24 00:25 Rocky Bernstein
|
328
|
-
|
329
|
-
* trunk/ChangeLog, trunk/Rakefile, ChangeLog, trunk/lib/ChangeLog:
|
330
|
-
Rakefile: set up gem unit test for ruby-debug-base. Add file in
|
331
|
-
test/
|
332
|
-
so we could do the same for ruby-debug were it not for other
|
333
|
-
mysterious
|
334
|
-
problems.
|
335
|
-
|
336
|
-
2007-12-23 17:33 Rocky Bernstein
|
337
|
-
|
338
|
-
* trunk/CHANGES, trunk/ChangeLog, trunk/Makefile.am,
|
339
|
-
trunk/Rakefile, trunk/doc, ChangeLog, trunk/lib/ChangeLog,
|
340
|
-
trunk/svn2cl_usermap, trunk/test/test-columnize.rb,
|
341
|
-
trunk/test/test-ruby-debug-base.rb,
|
342
|
-
trunk/test/test-ruby-debug.rb: Go over packaging:
|
343
|
-
ChangeLogs for ruby-debug-base (in ext and lib) separate from CLI
|
344
|
-
ChangeLog
|
345
|
-
ChangeLogs now map userid to names
|
346
|
-
ruby-debug-base regression test included in ruby-debug-base
|
347
|
-
Columnize test separated. (It will disappear when ruby-debug
|
348
|
-
requires it
|
349
|
-
as an external)
|
350
|
-
|
351
|
-
2007-12-17 05:43 Rocky Bernstein
|
352
|
-
|
353
|
-
* ruby_debug.c: Doc typo.
|
354
|
-
|
355
|
-
2007-12-16 21:31 Rocky Bernstein
|
356
|
-
|
357
|
-
* trunk, trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
|
358
|
-
trunk/doc, trunk/emacs, ., trunk/lib/ruby-debug-base.rb,
|
359
|
-
trunk/test/helper.rb, trunk/test/info-var-bug.rb,
|
360
|
-
trunk/test/info-var.cmd, trunk/test/info-var.right,
|
361
|
-
trunk/test/runall, trunk/test/test-breakpoints.rb,
|
362
|
-
trunk/test/test-display.rb, trunk/test/test-help.rb,
|
363
|
-
trunk/test/test-info-var.rb: Add "info variables test".
|
364
|
-
|
365
|
-
ruby-debug-base.rb: Not sure how test(?M, file) ever worked
|
366
|
-
before but change
|
367
|
-
to use File.stat(file).mtime
|
368
|
-
info.rb: ignore debugger variables which are sometimes set.
|
369
|
-
|
370
|
-
2007-12-14 11:56 Rocky Bernstein
|
371
|
-
|
372
|
-
* trunk/configure.ac, trunk/doc/ruby-debug.texi, ruby_debug.c:
|
373
|
-
Change version to 0.10.0
|
374
|
-
|
375
|
-
2007-12-14 03:22 Rocky Bernstein
|
376
|
-
|
377
|
-
* trunk/CHANGES, trunk/configure.ac, trunk/doc/rdebug.1,
|
378
|
-
trunk/doc/ruby-debug.texi, ruby_debug.c: ruby-debug.c,
|
379
|
-
configure.ac, ruby-debug.texi: Up version to 0.9.9
|
380
|
-
rdebug.1: document --no-quit
|
381
|
-
ruby-debu.texi: More work on Emacs section.
|
382
|
-
|
383
|
-
2007-12-02 21:47 Rocky Bernstein
|
384
|
-
|
385
|
-
* trunk/cli/ruby-debug/commands/enable.rb,
|
386
|
-
trunk/cli/ruby-debug/commands/info.rb,
|
387
|
-
trunk/emacs/rdebug-test.el, trunk/emacs/rdebug.el, ruby_debug.c,
|
388
|
-
trunk/test/breakpoints.cmd, trunk/test/breakpoints.right: Allow
|
389
|
-
enabling/disabling breakpoints. Add unit test of
|
390
|
-
enabling/disabling and
|
391
|
-
emacs regexp checking. Adjust rdebug.el accordingly.
|
392
|
-
|
393
|
-
2007-11-24 11:01 Rocky Bernstein
|
394
|
-
|
395
|
-
* ruby_debug.c: Some documentation typos.
|
396
|
-
|
397
|
-
2007-11-24 04:07 Rocky Bernstein
|
398
|
-
|
399
|
-
* ruby_debug.c: Ooops, forgot to do frame_locals and update the
|
400
|
-
rb_define_method
|
401
|
-
argument count in a couple of places.
|
402
|
-
|
403
|
-
2007-11-24 03:00 Rocky Bernstein
|
404
|
-
|
405
|
-
* trunk/Rakefile, trunk/doc/Makefile.am, trunk/doc/ruby-debug.texi,
|
406
|
-
ruby_debug.c, trunk/test/test-ruby-debug.rb: ruby_debug.c:
|
407
|
-
context.frame things now allow the frame postion number to be
|
408
|
-
optional. We'll assume 0 (the top) as the default.
|
409
|
-
|
410
|
-
test-ruby-debug.rb: add tests of the above an of these routines
|
411
|
-
in general. Make this
|
412
|
-
be able to run outside of rake.
|
413
|
-
|
414
|
-
Rakefile: Removed emacs/elisp since that's now part of a
|
415
|
-
different package.
|
416
|
-
|
417
|
-
doc/Makefile.am: Make manual page
|
418
|
-
|
419
|
-
doc/ruby-debug.texi: try to clarify blocks/frames. Redo incorrect
|
420
|
-
frame passages as a result of vestiges of the bashdb manual.
|
421
|
-
|
422
|
-
2007-11-15 19:03 Rocky Bernstein
|
423
|
-
|
424
|
-
* ruby_debug.c: Fix misspelling of declared.
|
425
|
-
|
426
|
-
2007-10-12 01:45 Rocky Bernstein
|
427
|
-
|
428
|
-
* ruby_debug.c, trunk/test/breakpoints.cmd: Bug in setting a
|
429
|
-
breakpoint at a main method (e.g. main.gcd). Inside
|
430
|
-
breakpoint_by method we seem to get nil for the class name. The
|
431
|
-
fix
|
432
|
-
here is to change that to the string "main". Better might be to
|
433
|
-
have
|
434
|
-
that class name not be nil.
|
435
|
-
|
436
|
-
test/breakpoints.cmd has a sequence of commands that when run on
|
437
|
-
gcd.rb will show the problem.
|
438
|
-
|
439
|
-
2007-08-05 22:10 Rocky Bernstein
|
440
|
-
|
441
|
-
* ruby_debug.c: Typo.
|
442
|
-
|
443
|
-
2007-08-04 13:36 Rocky Bernstein
|
444
|
-
|
445
|
-
* trunk/cli/ruby-debug/command.rb,
|
446
|
-
trunk/cli/ruby-debug/commands/display.rb,
|
447
|
-
trunk/cli/ruby-debug/commands/eval.rb,
|
448
|
-
trunk/cli/ruby-debug/commands/settings.rb,
|
449
|
-
trunk/cli/ruby-debug/commands/show.rb,
|
450
|
-
trunk/cli/ruby-debug/commands/stepping.rb,
|
451
|
-
trunk/cli/ruby-debug/processor.rb, trunk/doc/ruby-debug.texi,
|
452
|
-
ruby_debug.c: settings, processor, show: display expressions
|
453
|
-
should be shown when line tracing. To this end change always_run
|
454
|
-
from
|
455
|
-
a boolean on integer "level" number.
|
456
|
-
|
457
|
-
eval.rb pc -> putl
|
458
|
-
|
459
|
-
ruby_debug.c: replace a non-word in a comment its equivalent
|
460
|
-
ruby-debug.texi: document recent changes pc->putl, display
|
461
|
-
expresions appear when line tracing
|
462
|
-
|
463
|
-
2007-07-21 13:54 Rocky Bernstein
|
464
|
-
|
465
|
-
* trunk/cli/ruby-debug/command.rb, ruby_debug.c, trunk/runner.sh:
|
466
|
-
Changes to make ruby-debug work for 1.9 (at least minimally).
|
467
|
-
ruby_debug.c: parameter saving seems to have a bug in it. Don't
|
468
|
-
turn on by default.
|
469
|
-
runner.sh: set which ruby using environment variable RUBY.
|
470
|
-
|
471
|
-
2007-07-19 03:08 Rocky Bernstein
|
472
|
-
|
473
|
-
* trunk/cli/ruby-debug/command.rb,
|
474
|
-
trunk/cli/ruby-debug/commands/eval.rb,
|
475
|
-
trunk/cli/ruby-debug/commands/frame.rb,
|
476
|
-
trunk/cli/ruby-debug/commands/settings.rb,
|
477
|
-
trunk/cli/ruby-debug/commands/show.rb, ruby_debug.c: Add "set"
|
478
|
-
option to save scalar values and class names on each call.
|
479
|
-
Add pc (print columnized) and ps (print sorted columnized).
|
480
|
-
|
481
|
-
2007-06-21 10:39 Rocky Bernstein
|
482
|
-
|
483
|
-
* trunk/Rakefile, trunk/cli/ruby-debug/command.rb,
|
484
|
-
trunk/cli/ruby-debug/commands/script.rb,
|
485
|
-
trunk/doc/ruby-debug.texi, ruby_debug.c,
|
486
|
-
trunk/test/test-ruby-debug.rb: test-ruby-debug.rb, Rakefile:
|
487
|
-
revise so "rake test" works with recent reorganization.
|
488
|
-
ruby-debug.c: remove unused variable declaration (and compile
|
489
|
-
warning)
|
490
|
-
command.rb: remove a warning given when "$DEBUG" or warnings are
|
491
|
-
set
|
492
|
-
script.rb: rename "script" to "source" to be more in line with
|
493
|
-
gdb
|
494
|
-
ruby-debug.texi: document "source" command, .rdebugrc and how
|
495
|
-
command files
|
496
|
-
work.
|
497
|
-
|
498
|
-
2007-06-05 16:36 Kent Sibilev
|
499
|
-
|
500
|
-
* trunk/bin/rdebug, trunk/cli/ruby-debug/command.rb,
|
501
|
-
trunk/cli/ruby-debug/commands/breakpoints.rb,
|
502
|
-
trunk/cli/ruby-debug/commands/control.rb,
|
503
|
-
trunk/cli/ruby-debug/commands/display.rb,
|
504
|
-
trunk/cli/ruby-debug/commands/eval.rb,
|
505
|
-
trunk/cli/ruby-debug/commands/frame.rb,
|
506
|
-
trunk/cli/ruby-debug/commands/help.rb,
|
507
|
-
trunk/cli/ruby-debug/commands/info.rb,
|
508
|
-
trunk/cli/ruby-debug/commands/method.rb,
|
509
|
-
trunk/cli/ruby-debug/commands/script.rb,
|
510
|
-
trunk/cli/ruby-debug/commands/settings.rb,
|
511
|
-
trunk/cli/ruby-debug/commands/show.rb,
|
512
|
-
trunk/cli/ruby-debug/commands/stepping.rb,
|
513
|
-
trunk/cli/ruby-debug/commands/threads.rb,
|
514
|
-
trunk/cli/ruby-debug/commands/variables.rb,
|
515
|
-
trunk/cli/ruby-debug/interface.rb,
|
516
|
-
trunk/cli/ruby-debug/processor.rb, ruby_debug.c,
|
517
|
-
trunk/lib/ruby-debug-base.rb: code reorganization.
|
518
|
-
reverted 'run' command.
|
519
|
-
|
520
|
-
2007-06-05 03:48 Kent Sibilev
|
521
|
-
|
522
|
-
* trunk/cli/ruby-debug/command.rb,
|
523
|
-
trunk/cli/ruby-debug/commands/control.rb, ruby_debug.c: tabs to
|
524
|
-
spaces
|
525
|
-
changed copy.args to play nicely with GC
|
526
|
-
|
527
|
-
2007-06-03 02:44 Rocky Bernstein
|
528
|
-
|
529
|
-
* trunk/bin/rdebug, trunk/cli/ruby-debug/commands/control.rb,
|
530
|
-
trunk/cli/ruby-debug/processor.rb, ruby_debug.c: Get warm restart
|
531
|
-
working for one thread - it might even work on OSX ;-)
|
532
|
-
|
533
|
-
2007-05-25 07:48 Rocky Bernstein
|
534
|
-
|
535
|
-
* trunk/cli/ruby-debug/command.rb, ruby_debug.c: Have to back off
|
536
|
-
from showing parameter values since we are showing the
|
537
|
-
dynamic value. So instead we show the paramater class.
|
538
|
-
|
539
|
-
It should be possible to show the value however if
|
540
|
-
--keep-frame-bindings is
|
541
|
-
true.
|
542
|
-
|
543
|
-
2007-05-24 13:03 Rocky Bernstein
|
544
|
-
|
545
|
-
* branches/rocky, branches/rocky/Rakefile,
|
546
|
-
branches/rocky/cli/ruby-debug/command.rb,
|
547
|
-
branches/rocky/cli/ruby-debug/commands/frame.rb,
|
548
|
-
branches/rocky/cli/ruby-debug/commands/help.rb,
|
549
|
-
branches/rocky/cli/ruby-debug/commands/method.rb,
|
550
|
-
branches/rocky/cli/ruby-debug/commands/settings.rb,
|
551
|
-
branches/rocky/cli/ruby-debug/commands/threads.rb,
|
552
|
-
branches/rocky/cli/ruby-debug/commands/variables.rb,
|
553
|
-
branches/rocky/ext/ruby_debug.c, trunk/Rakefile,
|
554
|
-
trunk/cli/ruby-debug/command.rb,
|
555
|
-
trunk/cli/ruby-debug/commands/frame.rb,
|
556
|
-
trunk/cli/ruby-debug/commands/help.rb,
|
557
|
-
trunk/cli/ruby-debug/commands/method.rb,
|
558
|
-
trunk/cli/ruby-debug/commands/settings.rb,
|
559
|
-
trunk/cli/ruby-debug/commands/threads.rb,
|
560
|
-
trunk/cli/ruby-debug/commands/variables.rb, ruby_debug.c: Add
|
561
|
-
sandbox for rocky to work in
|
562
|
-
|
563
|
-
2007-05-17 03:55 Kent Sibilev
|
564
|
-
|
565
|
-
* ruby_debug.c: removed debug message
|
566
|
-
|
567
|
-
2007-05-09 16:56 Kent Sibilev
|
568
|
-
|
569
|
-
* trunk/CHANGES, trunk/bin/rdebug, ruby_debug.c: '-r' option can be
|
570
|
-
used to require additional libraries
|
571
|
-
|
572
|
-
2007-04-27 06:07 Kent Sibilev
|
573
|
-
|
574
|
-
* ruby_debug.c: Ctrl-C exits irb and continutes execution bypassing
|
575
|
-
the debugger prompt
|
576
|
-
|
577
|
-
2007-04-07 23:21 Kent Sibilev
|
578
|
-
|
579
|
-
* ruby_debug.c: removed wrong if node check
|
580
|
-
|
581
|
-
2007-04-04 20:23 Kent Sibilev
|
582
|
-
|
583
|
-
* trunk/CHANGES, ruby_debug.c: added hit conditions to breakpoints
|
584
|
-
|
585
|
-
2007-04-03 18:05 Kent Sibilev
|
586
|
-
|
587
|
-
* ruby_debug.c: Fixed file comparision on Windows platform
|
588
|
-
|
589
|
-
2007-04-03 01:48 Kent Sibilev
|
590
|
-
|
591
|
-
* trunk/CHANGES, trunk/cli/ruby-debug/command.rb,
|
592
|
-
trunk/cli/ruby-debug/commands/settings.rb,
|
593
|
-
trunk/cli/ruby-debug/commands/stepping.rb, ruby_debug.c: Added
|
594
|
-
force parameter to stepping commands
|
595
|
-
|
596
|
-
2007-04-03 01:16 Kent Sibilev
|
597
|
-
|
598
|
-
* trunk/CHANGES, trunk/cli/ruby-debug/commands/stepping.rb,
|
599
|
-
ruby_debug.c: added force option to Context#step_over
|
600
|
-
|
601
|
-
2007-04-02 20:55 Kent Sibilev
|
602
|
-
|
603
|
-
* trunk/CHANGES, trunk/cli/ruby-debug/commands/breakpoints.rb,
|
604
|
-
ruby_debug.c: fixed incorrect stack calculation
|
605
|
-
break help fix
|
606
|
-
|
607
|
-
2007-03-30 08:03 Kent Sibilev
|
608
|
-
|
609
|
-
* ruby_debug.c:
|
610
|
-
|
611
|
-
2007-03-30 07:40 Kent Sibilev
|
612
|
-
|
613
|
-
* ruby_debug.c:
|
614
|
-
|
615
|
-
2007-03-30 07:39 Kent Sibilev
|
616
|
-
|
617
|
-
* ruby_debug.c:
|
618
|
-
|
619
|
-
2007-03-30 07:21 Kent Sibilev
|
620
|
-
|
621
|
-
* trunk/CHANGES, ruby_debug.c: All Ruby's 'eval' and require/load
|
622
|
-
methods create a new frame.
|
623
|
-
|
624
|
-
2007-03-29 02:09 Kent Sibilev
|
625
|
-
|
626
|
-
* trunk/CHANGES, trunk/cli/ruby-debug/command.rb,
|
627
|
-
trunk/cli/ruby-debug/commands/frame.rb,
|
628
|
-
trunk/cli/ruby-debug/commands/settings.rb, ruby_debug.c: Added
|
629
|
-
new Context.frame_class method
|
630
|
-
|
631
|
-
'frame' command will display a class name along with method name
|
632
|
-
|
633
|
-
Added new 'fullpath' setting.
|
634
|
-
|
635
|
-
2007-03-29 00:45 Kent Sibilev
|
636
|
-
|
637
|
-
* trunk/CHANGES, ruby_debug.c: too many internal changes require a
|
638
|
-
new major release
|
639
|
-
|
640
|
-
2007-03-29 00:27 Kent Sibilev
|
641
|
-
|
642
|
-
* ruby_debug.c: remove useless stops when performing 'step_over'
|
643
|
-
operation
|
644
|
-
|
645
|
-
2007-03-28 20:36 Kent Sibilev
|
646
|
-
|
647
|
-
* trunk/CHANGES, trunk/cli/ruby-debug/commands/stepping.rb,
|
648
|
-
ruby_debug.c: Added the possibility to add a temporary
|
649
|
-
context-specific breakpoint.
|
650
|
-
|
651
|
-
Context#breakpoint and Context#set_breakpoint methods are added.
|
652
|
-
|
653
|
-
'cont' command now accepts a numerical parameter which implements
|
654
|
-
'Continue until line' behavior.
|
655
|
-
|
656
|
-
2007-03-27 23:26 Kent Sibilev
|
657
|
-
|
658
|
-
* ruby_debug.c: fixed previous optimization for Proc objects
|
659
|
-
|
660
|
-
2007-03-27 23:22 Kent Sibilev
|
661
|
-
|
662
|
-
* ruby_debug.c: we don't need to create a new frame if there is no
|
663
|
-
block for a c-call
|
664
|
-
|
665
|
-
2007-03-27 23:08 Kent Sibilev
|
666
|
-
|
667
|
-
* trunk/CHANGES, ruby_debug.c: Calling a method with a block will
|
668
|
-
create a new frame. This changes the behavior of 'next' command.
|
669
|
-
So in order to step into a block, 'step' command must be used.
|
670
|
-
That fixes bug #9629.
|
671
|
-
|
672
|
-
2007-03-27 22:50 Kent Sibilev
|
673
|
-
|
674
|
-
* ruby_debug.c: step over shouldn't check that we moved to another
|
675
|
-
line
|
676
|
-
|
677
|
-
2007-03-26 14:27 Kent Sibilev
|
678
|
-
|
679
|
-
* ruby_debug.c: ditto
|
680
|
-
|
681
|
-
2007-03-26 02:51 Kent Sibilev
|
682
|
-
|
683
|
-
* ruby_debug.c: the frame must be captured when calling Proc#call
|
684
|
-
method
|
685
|
-
|
686
|
-
2007-03-24 18:17 Kent Sibilev
|
687
|
-
|
688
|
-
* branches/stable, trunk: stable becomes the trunk
|
689
|
-
|
690
|
-
2007-03-24 18:03 Kent Sibilev
|
691
|
-
|
692
|
-
* branches/stable/ext/ruby_debug.c: ported stop reason from the
|
693
|
-
trunk
|
694
|
-
|
695
|
-
2007-03-19 07:46 Kent Sibilev
|
696
|
-
|
697
|
-
* branches/stable/cli/debugger.rb,
|
698
|
-
branches/stable/cli/ruby-debug.rb,
|
699
|
-
branches/stable/ext/ruby_debug.c: fixes processor to handler
|
700
|
-
renaming
|
701
|
-
added a shortcut module
|
702
|
-
|
703
|
-
2007-02-27 08:02 Kent Sibilev
|
704
|
-
|
705
|
-
* branches/stable/Rakefile, branches/stable/cli,
|
706
|
-
branches/stable/cli/ruby-debug,
|
707
|
-
branches/stable/cli/ruby-debug/command.rb,
|
708
|
-
branches/stable/cli/ruby-debug/commands,
|
709
|
-
branches/stable/cli/ruby-debug/interface.rb,
|
710
|
-
branches/stable/cli/ruby-debug/processor.rb,
|
711
|
-
branches/stable/ext/ruby_debug.c,
|
712
|
-
branches/stable/lib/ruby-debug-base.rb,
|
713
|
-
branches/stable/lib/ruby-debug.rb,
|
714
|
-
branches/stable/lib/ruby-debug/command.rb,
|
715
|
-
branches/stable/lib/ruby-debug/commands,
|
716
|
-
branches/stable/lib/ruby-debug/interface.rb,
|
717
|
-
branches/stable/lib/ruby-debug/processor.rb: repackaging
|
718
|
-
ruby-debug
|
719
|
-
|
720
|
-
2007-02-23 20:56 Kent Sibilev
|
721
|
-
|
722
|
-
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
723
|
-
branches/stable/lib/ruby-debug.rb: added an option for
|
724
|
-
Debugger.debug_load to stop at the first line of code
|
725
|
-
|
726
|
-
2007-02-09 16:56 Kent Sibilev
|
727
|
-
|
728
|
-
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
729
|
-
branches/stable/lib/ruby-debug.rb: in remote mode the debugger
|
730
|
-
shouldn't stop inside of rdebug script
|
731
|
-
|
732
|
-
2007-02-07 02:42 Kent Sibilev
|
733
|
-
|
734
|
-
* branches/stable/ext/ruby_debug.c,
|
735
|
-
branches/stable/lib/ruby-debug/commands/threads.rb,
|
736
|
-
branches/stable/lib/ruby-debug/processor.rb: should use ignored?
|
737
|
-
method to check for the debugger's thread
|
738
|
-
|
739
|
-
2007-02-05 20:34 Kent Sibilev
|
740
|
-
|
741
|
-
* branches/stable/ext, branches/stable/ext/ruby_debug.c,
|
742
|
-
branches/stable/ext/win32: --
|
743
|
-
|
744
|
-
2007-02-05 20:16 Kent Sibilev
|
745
|
-
|
746
|
-
* branches/stable/ext/ruby_debug.c,
|
747
|
-
branches/stable/lib/ruby-debug/commands/frame.rb: fixed another
|
748
|
-
issue where a bogus frame is being left in the stack
|
749
|
-
|
750
|
-
2007-02-05 08:08 Kent Sibilev
|
751
|
-
|
752
|
-
* branches/stable/ext/ruby_debug.c: should save frame id as well
|
753
|
-
|
754
|
-
2007-02-05 07:55 Kent Sibilev
|
755
|
-
|
756
|
-
* branches/stable/ext/ruby_debug.c: fix stack corruption error
|
757
|
-
|
758
|
-
2007-02-05 01:16 Kent Sibilev
|
759
|
-
|
760
|
-
* branches/stable/ext/ruby_debug.c: store frame's self and
|
761
|
-
dyna_vars along with file/line information
|
762
|
-
|
763
|
-
2007-02-04 23:36 Kent Sibilev
|
764
|
-
|
765
|
-
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
766
|
-
branches/stable/lib/ruby-debug/commands/settings.rb: seg fault
|
767
|
-
bugfixes
|
768
|
-
fixed suspend/resume
|
769
|
-
|
770
|
-
2007-02-04 05:06 Kent Sibilev
|
771
|
-
|
772
|
-
* branches/stable/ext/ruby_debug.c: restore prev patch
|
773
|
-
|
774
|
-
2007-02-04 03:49 Kent Sibilev
|
775
|
-
|
776
|
-
* branches/stable/ext/ruby_debug.c: --
|
777
|
-
|
778
|
-
2007-02-04 03:49 Kent Sibilev
|
779
|
-
|
780
|
-
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
781
|
-
branches/stable/lib/ruby-debug.rb: A better fix for the
|
782
|
-
segmentation fault
|
783
|
-
|
784
|
-
2007-02-03 22:02 Kent Sibilev
|
785
|
-
|
786
|
-
* branches/stable/ext/ruby_debug.c: found a better patch
|
787
|
-
|
788
|
-
2007-02-03 20:24 Kent Sibilev
|
789
|
-
|
790
|
-
* branches/stable/ext/ruby_debug.c,
|
791
|
-
branches/stable/lib/ruby-debug.rb,
|
792
|
-
branches/stable/lib/ruby-debug/processor.rb: fix seg fault by
|
793
|
-
avoiding ruby's bug
|
794
|
-
fixed Context#resume
|
795
|
-
when handling post-mortem all threads must be suspended
|
796
|
-
|
797
|
-
2007-02-02 18:47 Kent Sibilev
|
798
|
-
|
799
|
-
* branches/stable/ext/ruby_debug.c,
|
800
|
-
branches/stable/lib/ruby-debug/commands/frame.rb: removed
|
801
|
-
ambiguity with down command
|
802
|
-
|
803
|
-
2007-02-01 22:15 Kent Sibilev
|
804
|
-
|
805
|
-
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
806
|
-
branches/stable/lib/ruby-debug/commands/eval.rb: made eval
|
807
|
-
command available from the control thread
|
808
|
-
|
809
|
-
2007-02-01 17:30 Kent Sibilev
|
810
|
-
|
811
|
-
* branches/stable/ext/ruby_debug.c: fixed dllexport for windows
|
812
|
-
platform
|
813
|
-
|
814
|
-
2007-02-01 15:49 Kent Sibilev
|
815
|
-
|
816
|
-
* branches/stable/ext/ruby_debug.c: ditto
|
817
|
-
|
818
|
-
2007-02-01 07:22 Kent Sibilev
|
819
|
-
|
820
|
-
* branches/stable/ext/ruby_debug.c,
|
821
|
-
branches/stable/lib/ruby-debug/command.rb,
|
822
|
-
branches/stable/lib/ruby-debug/commands/breakpoints.rb,
|
823
|
-
branches/stable/lib/ruby-debug/commands/eval.rb,
|
824
|
-
branches/stable/lib/ruby-debug/commands/frame.rb,
|
825
|
-
branches/stable/lib/ruby-debug/commands/list.rb,
|
826
|
-
branches/stable/lib/ruby-debug/commands/settings.rb,
|
827
|
-
branches/stable/lib/ruby-debug/commands/threads.rb: added setting
|
828
|
-
command
|
829
|
-
added Context#suspended? method
|
830
|
-
dispay suspended status in the thread list
|
831
|
-
display frame starting from zero
|
832
|
-
|
833
|
-
2007-01-31 22:12 Kent Sibilev
|
834
|
-
|
835
|
-
* branches/stable/ext/ruby_debug.c: store object ids in VALUE type
|
836
|
-
|
837
|
-
2007-01-31 21:04 Kent Sibilev
|
838
|
-
|
839
|
-
* branches/stable/ext/ruby_debug.c: ditto
|
840
|
-
|
841
|
-
2007-01-31 20:44 Kent Sibilev
|
842
|
-
|
843
|
-
* branches/stable/ext/ruby_debug.c: make a deep copy when capturing
|
844
|
-
post mortem context
|
845
|
-
|
846
|
-
2007-01-31 19:39 Kent Sibilev
|
847
|
-
|
848
|
-
* branches/stable/ext/ruby_debug.c,
|
849
|
-
branches/stable/lib/ruby-debug/command.rb: fixed frame count
|
850
|
-
added frame_self method to context
|
851
|
-
|
852
|
-
2007-01-31 16:48 Kent Sibilev
|
853
|
-
|
854
|
-
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
855
|
-
branches/stable/lib/ruby-debug.rb,
|
856
|
-
branches/stable/lib/ruby-debug/command.rb,
|
857
|
-
branches/stable/lib/ruby-debug/commands/eval.rb,
|
858
|
-
branches/stable/lib/ruby-debug/commands/frame.rb,
|
859
|
-
branches/stable/lib/ruby-debug/commands/irb.rb,
|
860
|
-
branches/stable/lib/ruby-debug/commands/variables.rb,
|
861
|
-
branches/stable/lib/ruby-debug/processor.rb: removed all
|
862
|
-
references to frames array
|
863
|
-
fixed post-mortem debugging
|
864
|
-
|
865
|
-
2007-01-31 00:41 Kent Sibilev
|
866
|
-
|
867
|
-
* branches/stable/ext/ruby_debug.c,
|
868
|
-
branches/stable/lib/ruby-debug.rb,
|
869
|
-
branches/stable/lib/ruby-debug/commands/frame.rb,
|
870
|
-
branches/stable/lib/ruby-debug/commands/variables.rb,
|
871
|
-
branches/stable/lib/ruby-debug/processor.rb: refactored out frame
|
872
|
-
class and preallocate stack
|
873
|
-
made local variable available even when bindings are not
|
874
|
-
collected.
|
875
|
-
|
876
|
-
2007-01-28 06:22 Kent Sibilev
|
877
|
-
|
878
|
-
* branches/stable/AUTHORS, branches/stable/CHANGES,
|
879
|
-
branches/stable/Rakefile, branches/stable/ext/ruby_debug.c,
|
880
|
-
branches/stable/lib/ruby-debug/commands/frame.rb: - Control
|
881
|
-
thread is always started by rdebug script.
|
882
|
-
- Ability to specify negative frame number to frame commands.
|
883
|
-
Patch from R. Bernstein.
|
884
|
-
|
885
|
-
2007-01-28 04:59 Kent Sibilev
|
886
|
-
|
887
|
-
* branches/stable/ext/ruby_debug.c: --
|
888
|
-
|
889
|
-
2007-01-28 04:52 Kent Sibilev
|
890
|
-
|
891
|
-
* branches/stable/CHANGES, branches/stable/bin/rdebug,
|
892
|
-
branches/stable/ext/ruby_debug.c,
|
893
|
-
branches/stable/lib/ruby-debug.rb,
|
894
|
-
branches/stable/lib/ruby-debug/commands/control.rb: added top
|
895
|
-
frame caching
|
896
|
-
control thread is always started by rdebug script
|
897
|
-
|
898
|
-
2007-01-28 01:21 Kent Sibilev
|
899
|
-
|
900
|
-
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c:
|
901
|
-
|
902
|
-
2007-01-27 01:43 Kent Sibilev
|
903
|
-
|
904
|
-
* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
|
905
|
-
branches/stable/lib/ruby-debug.rb,
|
906
|
-
branches/stable/lib/ruby-debug/command.rb,
|
907
|
-
branches/stable/lib/ruby-debug/commands/frame.rb,
|
908
|
-
branches/stable/lib/ruby-debug/commands/stepping.rb,
|
909
|
-
branches/stable/lib/ruby-debug/commands/threads.rb,
|
910
|
-
branches/stable/lib/ruby-debug/commands/tmate.rb,
|
911
|
-
branches/stable/lib/ruby-debug/processor.rb: another performance
|
912
|
-
optimization
|
913
|
-
|
914
|
-
2007-01-26 19:31 Kent Sibilev
|
915
|
-
|
916
|
-
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
917
|
-
branches/stable/ext/win32/ruby_debug.so: --
|
918
|
-
|
919
|
-
2007-01-26 17:59 Kent Sibilev
|
920
|
-
|
921
|
-
* branches/stable/ext/ruby_debug.c,
|
922
|
-
branches/stable/lib/ruby-debug/commands/breakpoints.rb: revisited
|
923
|
-
file name comparing procedure
|
924
|
-
|
925
|
-
2007-01-26 09:03 Kent Sibilev
|
926
|
-
|
927
|
-
* branches/stable/ext/ruby_debug.c,
|
928
|
-
branches/stable/lib/ruby-debug/commands/breakpoints.rb:
|
929
|
-
performance improvements
|
930
|
-
|
931
|
-
2007-01-26 03:12 Kent Sibilev
|
932
|
-
|
933
|
-
* branches/stable/CHANGES, branches/stable/bin/rdebug,
|
934
|
-
branches/stable/ext/ruby_debug.c,
|
935
|
-
branches/stable/lib/ruby-debug.rb,
|
936
|
-
branches/stable/lib/ruby-debug/command.rb,
|
937
|
-
branches/stable/lib/ruby-debug/commands/irb.rb,
|
938
|
-
branches/stable/lib/ruby-debug/commands/variables.rb,
|
939
|
-
branches/stable/lib/ruby-debug/processor.rb: added option to
|
940
|
-
exclude collecting of frame bindings
|
941
|
-
|
942
|
-
2007-01-25 01:41 Kent Sibilev
|
943
|
-
|
944
|
-
* branches/stable/ext/ruby_debug.c: small optimization
|
945
|
-
|
946
|
-
2007-01-25 00:55 Kent Sibilev
|
947
|
-
|
948
|
-
* branches/stable/ext/ruby_debug.c: remove the live thread ref from
|
949
|
-
locker structure as well
|
950
|
-
|
951
|
-
2007-01-24 20:42 Kent Sibilev
|
952
|
-
|
953
|
-
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c: don't
|
954
|
-
keep a ref to a live thread.
|
955
|
-
check contexts that their threads are alive
|
956
|
-
|
957
|
-
2007-01-21 03:34 Kent Sibilev
|
958
|
-
|
959
|
-
* branches/stable/ext/ruby_debug.c,
|
960
|
-
branches/stable/lib/ruby-debug.rb,
|
961
|
-
branches/stable/lib/ruby-debug/commands/breakpoints.rb: assign an
|
962
|
-
id to the breakpoint
|
963
|
-
|
964
|
-
2007-01-21 01:20 Kent Sibilev
|
965
|
-
|
966
|
-
* branches/stable/ext/ruby_debug.c,
|
967
|
-
branches/stable/lib/ruby-debug.rb,
|
968
|
-
branches/stable/lib/ruby-debug/interface.rb,
|
969
|
-
branches/stable/lib/ruby-debug/processor.rb: added
|
970
|
-
post_mortem_method wrap method
|
971
|
-
|
972
|
-
2006-12-21 20:30 Kent Sibilev
|
973
|
-
|
974
|
-
* branches/stable/bin/rdebug,
|
975
|
-
branches/stable/ext/win32/ruby_debug.so: fix of restart command
|
976
|
-
for windows platform
|
977
|
-
|
978
|
-
2006-12-21 13:43 Kent Sibilev
|
979
|
-
|
980
|
-
* branches/stable/ext/ruby_debug.c,
|
981
|
-
branches/stable/ext/win32/ruby_debug.so,
|
982
|
-
branches/stable/lib/ruby-debug/commands/trace.rb: fixed trace
|
983
|
-
command in post-mortem mode
|
984
|
-
|
985
|
-
2006-12-21 01:08 Kent Sibilev
|
986
|
-
|
987
|
-
* branches/stable/ext/ruby_debug.c,
|
988
|
-
branches/stable/ext/win32/ruby_debug.so,
|
989
|
-
branches/stable/lib/ruby-debug/commands/irb.rb: fixes irb help
|
990
|
-
command
|
991
|
-
|
992
|
-
2006-12-20 21:19 Kent Sibilev
|
993
|
-
|
994
|
-
* branches/stable/ext/ruby_debug.c,
|
995
|
-
branches/stable/lib/ruby-debug.rb: check that debugger has been
|
996
|
-
started
|
997
|
-
|
998
|
-
2006-12-20 20:41 Kent Sibilev
|
999
|
-
|
1000
|
-
* branches/stable/ext/win32/ruby_debug.so:
|
1001
|
-
|
1002
|
-
2006-12-20 20:14 Kent Sibilev
|
1003
|
-
|
1004
|
-
* branches/stable/ext/ruby_debug.c: bumped version
|
1005
|
-
|
1006
|
-
2006-12-20 19:38 Kent Sibilev
|
1007
|
-
|
1008
|
-
* branches/stable/ext/ruby_debug.c,
|
1009
|
-
branches/stable/lib/ruby-debug.rb,
|
1010
|
-
branches/stable/lib/ruby-debug/command.rb,
|
1011
|
-
branches/stable/lib/ruby-debug/commands/control.rb,
|
1012
|
-
branches/stable/lib/ruby-debug/commands/frame.rb,
|
1013
|
-
branches/stable/lib/ruby-debug/commands/irb.rb,
|
1014
|
-
branches/stable/lib/ruby-debug/commands/stepping.rb,
|
1015
|
-
branches/stable/lib/ruby-debug/commands/threads.rb,
|
1016
|
-
branches/stable/lib/ruby-debug/commands/tmate.rb,
|
1017
|
-
branches/stable/lib/ruby-debug/processor.rb: initial support for
|
1018
|
-
post-mortem debugging
|
1019
|
-
|
1020
|
-
2006-12-18 08:34 Kent Sibilev
|
1021
|
-
|
1022
|
-
* branches/stable/ext/ruby_debug.c,
|
1023
|
-
branches/stable/lib/ruby-debug.rb,
|
1024
|
-
branches/stable/lib/ruby-debug/commands/irb.rb,
|
1025
|
-
branches/stable/lib/ruby-debug/commands/list.rb: added irb
|
1026
|
-
command
|
1027
|
-
fixed source_for method
|
1028
|
-
|
1029
|
-
2006-12-01 06:47 Kent Sibilev
|
1030
|
-
|
1031
|
-
* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
|
1032
|
-
branches/stable/lib/ruby-debug.rb:
|
1033
|
-
|
1034
|
-
2006-11-16 00:01 Kent Sibilev
|
1035
|
-
|
1036
|
-
* branches/stable: added the new branch for the stable version
|
1037
|
-
|
1038
|
-
2006-10-15 22:43 Kent Sibilev
|
1039
|
-
|
1040
|
-
* branches/ver_0_4_4: branching a stable version
|
1041
|
-
|
1042
|
-
2006-10-15 22:26 Kent Sibilev
|
1043
|
-
|
1044
|
-
* win32/ruby_debug.so, trunk/lib/ruby-debug.rb: remove unused
|
1045
|
-
require
|
1046
|
-
uploaded new windows binary
|
1047
|
-
|
1048
|
-
2006-10-15 21:56 Kent Sibilev
|
1049
|
-
|
1050
|
-
* ruby_debug.c: Debugger.start yields to the block even if it's
|
1051
|
-
already started
|
1052
|
-
|
1053
|
-
2006-10-15 16:54 Kent Sibilev
|
1054
|
-
|
1055
|
-
* ruby_debug.c, trunk/lib/ruby-debug.rb,
|
1056
|
-
trunk/lib/ruby-debug/commands/threads.rb: new logic of context
|
1057
|
-
suspend/resume
|
1058
|
-
|
1059
|
-
2006-10-15 07:36 Kent Sibilev
|
1060
|
-
|
1061
|
-
* trunk/bin/rdebug, ruby_debug.c, trunk/lib/ruby-debug.rb,
|
1062
|
-
trunk/lib/ruby-debug/lock.rb: fixed locking of debugger threads
|
1063
|
-
|
1064
|
-
2006-10-14 19:11 Kent Sibilev
|
1065
|
-
|
1066
|
-
* trunk/Rakefile, ruby_debug.c: make skip status local to a thread
|
1067
|
-
instead of globally disabling the debugger.
|
1068
|
-
|
1069
|
-
2006-10-09 22:01 Kent Sibilev
|
1070
|
-
|
1071
|
-
* ruby_debug.c, win32/ruby_debug.so,
|
1072
|
-
trunk/lib/ruby-debug/interface.rb: fixes for windows version
|
1073
|
-
|
1074
|
-
2006-10-09 19:06 Kent Sibilev
|
1075
|
-
|
1076
|
-
* trunk/CHANGES, ruby_debug.c, trunk/lib/ruby-debug.rb,
|
1077
|
-
trunk/lib/ruby-debug/interface.rb: added Debugger.skip and
|
1078
|
-
Debugger.debug_at_exit methods
|
1079
|
-
|
1080
|
-
2006-10-09 16:48 Kent Sibilev
|
1081
|
-
|
1082
|
-
* trunk/.gdb_history, .gdb_history, Makefile, ruby_debug.bundle:
|
1083
|
-
remove intermediate files
|
1084
|
-
|
1085
|
-
2006-10-09 16:44 Kent Sibilev
|
1086
|
-
|
1087
|
-
* trunk, trunk/.gdb_history, trunk/CHANGES, trunk/LICENSE,
|
1088
|
-
trunk/README, trunk/Rakefile, trunk/bin, trunk/bin/rdebug,
|
1089
|
-
trunk/doc, ., .gdb_history, Makefile, extconf.rb,
|
1090
|
-
ruby_debug.bundle, ruby_debug.c, win32, win32/ruby_debug.so,
|
1091
|
-
trunk/lib, trunk/lib/ruby-debug, trunk/lib/ruby-debug.rb,
|
1092
|
-
trunk/lib/ruby-debug/command.rb, trunk/lib/ruby-debug/commands,
|
1093
|
-
trunk/lib/ruby-debug/commands/breakpoints.rb,
|
1094
|
-
trunk/lib/ruby-debug/commands/catchpoint.rb,
|
1095
|
-
trunk/lib/ruby-debug/commands/control.rb,
|
1096
|
-
trunk/lib/ruby-debug/commands/display.rb,
|
1097
|
-
trunk/lib/ruby-debug/commands/eval.rb,
|
1098
|
-
trunk/lib/ruby-debug/commands/frame.rb,
|
1099
|
-
trunk/lib/ruby-debug/commands/help.rb,
|
1100
|
-
trunk/lib/ruby-debug/commands/list.rb,
|
1101
|
-
trunk/lib/ruby-debug/commands/method.rb,
|
1102
|
-
trunk/lib/ruby-debug/commands/script.rb,
|
1103
|
-
trunk/lib/ruby-debug/commands/stepping.rb,
|
1104
|
-
trunk/lib/ruby-debug/commands/threads.rb,
|
1105
|
-
trunk/lib/ruby-debug/commands/tmate.rb,
|
1106
|
-
trunk/lib/ruby-debug/commands/trace.rb,
|
1107
|
-
trunk/lib/ruby-debug/commands/variables.rb,
|
1108
|
-
trunk/lib/ruby-debug/interface.rb, trunk/lib/ruby-debug/lock.rb,
|
1109
|
-
trunk/lib/ruby-debug/processor.rb: initial import
|
1110
|
-
|