Skip site navigation (1)Skip section navigation (2)
Date:      04 Jun 2006 23:29:25 +0200
From:      "Arno J. Klaassen" <arno@heho.snv.jussieu.fr>
To:        freebsd-current@freebsd.org
Subject:   Re: indefinite wait buffer take-II
Message-ID:  <wpslmkvccq.fsf@heho.labo>
In-Reply-To: <wpwtbwvdf6.fsf@heho.labo>
References:  <wpwtbwvdf6.fsf@heho.labo>

next in thread | previous in thread | raw e-mail | index | archive | help

grr, followup to myself .. 

the part 
  
  if ( retry+TIMO_CHUNK > timo_secs) {
     timo_secs = retry+TIMO_CHUNK;
  }

should be read as :

  if ( retry*TIMO_CHUNK > timo_secs) {
     timo_secs = retry*TIMO_CHUNK;
  }

(I tested it this way, initialising timo_secs=1; sorry)

-- 

  Arno J. Klaassen

  SCITO S.A.
  8 rue des Haies
  F-75020 Paris, France
  http://scito.com




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?wpslmkvccq.fsf>