mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 22:10:21 +02:00
another trap printing tweak
* module/system/vm/trap-state.scm (add-trap-at-procedure-call!): (add-trace-at-procedure-call!): Breakpoint / tracepoint name tweaks.
This commit is contained in:
parent
665196884f
commit
3db15dce00
1 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@
|
|||
trap-state
|
||||
(make-trap-wrapper
|
||||
idx #t trap
|
||||
(format #f "breakpoint at ~a" proc)))))
|
||||
(format #f "Breakpoint at ~a" proc)))))
|
||||
|
||||
(define* (add-trace-at-procedure-call! proc
|
||||
#:optional (trap-state (the-trap-state)))
|
||||
|
@ -206,7 +206,7 @@
|
|||
trap-state
|
||||
(make-trap-wrapper
|
||||
idx #t trap
|
||||
(format #f "tracepoint at ~a" proc)))))
|
||||
(format #f "Tracepoint at ~a" proc)))))
|
||||
|
||||
(define* (add-trap! trap name #:optional (trap-state (the-trap-state)))
|
||||
(let* ((idx (next-index! trap-state)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue