User talk:Dmitry-kazakov: Difference between revisions

(Portability of PPMs)
Line 17:
:* EOF is? (ASCII LF, NUL, nothing)
:And well, PPM isn't our fault... (:-)) --[[User:Dmitry-kazakov|Dmitry-kazakov]] 12:17, 7 December 2008 (UTC)
 
== exception propagation in Ada. ==
 
In [[Rendezvous#The_task]] what do these lines do:
exception
when Out_Of_Ink =>
null;
end;
They look like they are masking/ignoring the Out_Of_Ink exception.
 
Whereas program appears to propagate Out_Of_Ink back to Mother_Goose. e.g.
requeue Backup.Print with abort;
Is that because if the "with abort"?
 
Also: when the task is requeued, to the Main printer suspend
waiting for Backup to finish?
 
[[User:NevilleDNZ|NevilleDNZ]] 06:28, 19 February 2009 (UTC)