print the *-node appropriately
svn: r14808 original commit: bc22c8a824ee15f67072f225d8e708ee08dfbe7e
This commit is contained in:
parent
0dc181a285
commit
8ad8b54bcc
|
@ -34,7 +34,9 @@
|
|||
(define-struct node (id src thread-ids total self callers callees)
|
||||
#:mutable
|
||||
#:property prop:custom-write
|
||||
(lambda (node o w?) (fprintf o "#<node:~s>" (or (node-id node) '???))))
|
||||
(lambda (node o w?)
|
||||
(fprintf o "#<node:~s>"
|
||||
(or (node-id node) (if (node-src node) '??? 'ROOT)))))
|
||||
|
||||
;; An edge representing function calls between two nodes:
|
||||
;; - total: the total time spent while the call was anywhere on the stack.
|
||||
|
|
Loading…
Reference in New Issue
Block a user