From 9b6331e468e621783aec60938d26acb6b228d019 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 29 May 2009 11:16:28 +0000 Subject: [PATCH] clarification svn: r15007 original commit: 56547f4142aa2cc82f86e5d3025ae137ac123e0d --- collects/profile/structs.ss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/collects/profile/structs.ss b/collects/profile/structs.ss index b8bea41..9732e7c 100644 --- a/collects/profile/structs.ss +++ b/collects/profile/structs.ss @@ -42,8 +42,9 @@ ;; - total: the total time spent while the call was anywhere on the stack. ;; - caller, callee: the two relevant `node' values. ;; - caller-time, callee-time: the time that the caller/callee spent in this -;; call (different from the above time because each stack sample's time is -;; divided by the number of times the caller/callee appears in that slice). +;; call relative to the callee/caller (different from the above time because +;; each stack sample's time is divided by the number of times the +;; caller/callee appears in that slice). (provide (struct-out edge)) (define-struct edge (total caller caller-time callee callee-time) #:mutable