-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchicken-profile.1
61 lines (43 loc) · 935 Bytes
/
chicken-profile.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.\" dummy line
.TH CHICKEN-PROFILE 1 "19 Sep 2001"
.SH NAME
chicken-profile \- generate a report from profile-information
.SH SYNOPSIS
.B chicken-profile
[
.I filename
|
.I option ...
]
.SH OPTIONS
.TP
.B \-sort\-by\-calls
Sort output by call frequency.
.TP
.B \-sort\-by\-time
Sort output by procedure execution time.
.TP
.B \-sort\-by\-avg
Sort output by average procedure execution time.
.TP
.B \-sort\-by\-name
Sort output alphabetically by procedure name.
.TP
.B \-no\-unused
Remove procedures that are never called.
.TP
.B \-help
Show usage information.
.SH DESCRIPTION
.I chicken\-profile reads in profiling information generated by CHICKEN Scheme
programs compiled with the
.B \-profile
option, and generates a table listing function names and their execution times.
.SH BUGS
Submit bug reports by e-mail to
.SH AUTHORS
The CHICKEN Team
.SH SEE ALSO
.BR chicken(1)
.BR csc(1)