A problematic bug in simple-init can be resolved by eliminating one variable. Specifically, change:-
$wait=60*60*24; while($active&& $running) { (undef,$wait)=select(undef,undef,undef,$wait); }
to:-
while($active&& $running) { select(undef,undef,undef,60*60*24); }
or suchlike. This change eliminates the case where the variable is zero and a busy wait on select() ensues.
Minor bugs remain. Regardless, simple-init is now suitable for deployment on systems which do not require suspend.
Nick
Password
Name
Subject
Comment
Plain Old Text HTML Formatted Extrans (html tags to text) Code
Allowed HTML <b|i|p|br|a|ol|ul|li|dl|dt|dd|em|strong|tt|blockquote|div|ecode|quote|sup|sub|abbr|sarc|sarcasm|user|spoiler|del>
URLs <URL:http://example.com/> will auto-link a URL
<URL:http://example.com/>
Important Stuff
If you are having a problem with accounts or comment posting, please yell for help.
simple-init Bug Fix For Aug 2016
A problematic bug in simple-init can be resolved by eliminating one variable. Specifically, change:-
to:-
or suchlike. This change eliminates the case where the variable is zero and a busy wait on select() ensues.
Minor bugs remain. Regardless, simple-init is now suitable for deployment on systems which do not require suspend.
Post Comment