This is a static copy of a profile reportHome
@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)
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
17 | end | 2 | 0 s | 0% |  |
16 | end | 2 | 0 s | 0% |  |
14 | mltimerpackage('Delete',obj.jo... | 2 | 0 s | 0% |  |
13 | obj.jobject(lcv).delete; | 2 | 0 s | 0% |  |
12 | obj.jobject(lcv).dispose; | 2 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 0% | |
Children (called functions)
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
timer.length | M-function | 2 | 0 s | 0% |  |
mltimerpackage | M-function | 2 | 0 s | 0% |  |
Self time (built-ins, overhead, etc.) | | | 0 s | 0% |  |
Totals | | | 0.000 s | 0% | |
M-Lint results
Line number | Message |
1 | Input variable 'event' appears never to be used. |
Coverage results
[ Show coverage for parent directory ]
Total lines in file | 17 |
Non-code lines (comments, blank lines) | 8 |
Code lines (lines that can run) | 9 |
Code lines that did run | 8 |
Code lines that did not run | 1 |
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