1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
;; -*-theme-d-*-
;; Copyright (C) 2008-2013, 2021 Tommi Höynälänmaa
;; Distributed under GNU Lesser General Public License version 3,
;; see file doc/LGPL-3.
(define-interface (standard-library statprof)
(import (standard-library core))
(declare-simple-method statprof-start () <none> nonpure)
(declare-simple-method statprof-stop () <none> nonpure)
(declare-simple-method statprof-reset (<integer> <integer> <boolean>)
<none> nonpure)
(declare-simple-method statprof-display () <none> nonpure))
|