This is a static copy of a profile report

Home

@timer\private\deleteAsync (2 calls, 0.000 sec)
Generated 15-Mar-2007 12:01:52 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\iofun\@timer\private\deleteAsync.m
[Copy to new window for comparing multiple runs]

Parents (calling functions)

Function NameFunction TypeCalls
timer.timercbM-function2
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
17
end
20 s0%
16
end
20 s0%
14
mltimerpackage('Delete',obj.jo...
20 s0%
13
obj.jobject(lcv).delete;
20 s0%
12
obj.jobject(lcv).dispose;
20 s0%
Other lines & overhead  0 s0%
Totals  0.000 s0% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
timer.lengthM-function20 s0%
mltimerpackageM-function20 s0%
Self time (built-ins, overhead, etc.)  0 s0%
Totals  0.000 s0% 
M-Lint results
Line numberMessage
1Input variable 'event' appears never to be used.
Coverage results
[ Show coverage for parent directory ]
Total lines in file17
Non-code lines (comments, blank lines)8
Code lines (lines that can run)9
Code lines that did run8
Code lines that did not run1
Coverage (did run/can run)88.89 %
Function listing
   time   calls  line
1 function deleteAsync(obj, event)
2 %Private helper function for deletion of the timer objects. This function
3 %is called asynchronously, through timercb, when a timer is to be deleted.
4 %An asynchronous call ensures that any other events in the queue, like a
5 %stop, are handled first.
6
7 % Copyright 2004 The MathWorks, Inc.
8
2 9 len = length(obj);
2 10 for lcv=1:len
2 11 try
2 12 obj.jobject(lcv).dispose;
2 13 obj.jobject(lcv).delete;
2 14 mltimerpackage('Delete',obj.jobject(lcv));
15 catch
2 16 end
2 17 end