view sched/timer_wait.m @ 0:672052bd81f8

Initial partial import.
author samer
date Wed, 19 Dec 2012 22:38:28 +0000
parents
children 7357e1dc2ad6
line wrap: on
line source
% waitfortimer - Wait for timer to stop running
%
% waitfortimer :: timer -> action unit.
% waitfortimer :: timer, nonneg ~'time quantum for waiting' -> action unit.
%
% If no wait quantum is supplied, the default is 50ms.

function waittimer(T,dt)

	if nargin<2, dt=0.05; end
	while isvalid(T) && strcmp(T.Running,'on')
		pause(dt);
	end
end