added package "no-mini-profiler" with same interface as "mini-profiler"

This commit is contained in:
Eric Knauel 2004-02-26 15:12:51 +00:00
parent 956f963829
commit 7d4264837f
2 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1,20 @@
(define (profile-init!)
#f)
(define (display-profile)
(display "No profiling data available.")
(newline))
(define-syntax define-prof
(syntax-rules
()
((_ ?args ...)
(define ?args ...))))
(define-syntax account-for
(syntax-rules
()
((_ ?account ?body ...)
(begin
?body
...))))

View File

@ -5,4 +5,7 @@
extended-ports
time)
(files profile))
(define-structure no-mini-profiler mini-profiler-interface
(open scheme)
(files no-profile))