CodeTools[Profiling][Allow] - allow procedures and modules marked by Ignore to be profiled
|
Calling Sequence
|
|
Allow(name)
|
|
Parameters
|
|
name
|
-
|
name of a function or module
|
|
|
|
|
Description
|
|
•
|
The Allow(name) command removes the mark on procedures and modules specified by the Ignore command. This allows Profile to collect information about the procedure.
|
•
|
Only procedures and modules that were passed to the Ignore command can be given to the Allow command.
|
|
|
Examples
|
|
>
|
|
>
|
a := proc() return "a" end proc;
|
| (1) |
>
|
b := proc() return "b" end proc;
|
| (2) |
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
b
b := proc()
|Calls Seconds Words|
PROC | 1 0.000 0|
1 | 1 0.000 0| return "b"
end proc
| |
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
a
a := proc()
|Calls Seconds Words|
PROC | 1 0.000 0|
1 | 1 0.000 0| return "a"
end proc
| |
>
|
|
b
b := proc()
|Calls Seconds Words|
PROC | 1 0.000 0|
1 | 1 0.000 0| return "b"
end proc
| |
|
|