doc fixups
original commit: 20aa70a6ef3213f2fb40387f1187c8a4e5d96baa
This commit is contained in:
parent
69c5f48e9a
commit
95bdf2d45c
|
@ -1,7 +1,7 @@
|
|||
#lang scribble/doc
|
||||
|
||||
@(require scribble/manual
|
||||
(for-label racket/base profile/analyzer))
|
||||
(for-label racket/base racket/contract profile/analyzer))
|
||||
|
||||
@title[#:tag "analyzer"]{Analyzing Profile Data}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
@(require scribble/manual
|
||||
(for-label racket/base
|
||||
racket/contract
|
||||
profile/analyzer
|
||||
(prefix-in text: profile/render-text)
|
||||
(prefix-in graphviz: profile/render-graphviz)))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#lang scribble/doc
|
||||
|
||||
@(require scribble/manual
|
||||
(for-label racket/base profile/sampler profile/analyzer))
|
||||
(for-label racket/base racket/contract profile/sampler profile/analyzer))
|
||||
|
||||
@title[#:tag "sampler"]{Collecting Profile Information}
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
|||
|
||||
@defproc[(create-sampler [to-track (or/c thread? custodian?
|
||||
(listof (or/c thread? custodian?)))]
|
||||
[delay nonnegative-number?]
|
||||
[delay (>=/c 0.0)]
|
||||
[super-cust custodian? (current-custodian)])
|
||||
((symbol?) (any/c) . ->* . any/c)]{
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#lang scribble/doc
|
||||
|
||||
@(require scribble/manual
|
||||
(for-label racket/base profile profile/sampler
|
||||
(for-label racket/base racket/contract profile profile/sampler
|
||||
(only-in profile/analyzer analyze-samples profile?)
|
||||
(prefix-in text: profile/render-text)))
|
||||
|
||||
|
@ -16,12 +16,13 @@ intended as a convenient tool for profiling code.
|
|||
|
||||
@defproc[(profile-thunk
|
||||
[thunk (-> any/c)]
|
||||
[#:delay delay nonnegative-number? 0.05]
|
||||
[#:delay delay (>=/c 0.0) 0.05]
|
||||
[#:repeat iterations exact-nonnegative-integer? 1]
|
||||
[#:threads threads? any/c #f]
|
||||
[#:render renderer (profile? . -> . any/c) text:render]
|
||||
[#:periodic-renderer periodic-renderer
|
||||
(or/c #f (list/c nonnegative-number? (profile? . -> . any/c)))
|
||||
(or/c #f (list/c (>=/c 0.0)
|
||||
(profile? . -> . any/c)))
|
||||
#f])
|
||||
void?]{
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user