<div class="gmail_quote">On 8 September 2012 06:14, Betsy Schwartz <span dir="ltr"><<a href="mailto:betsy.schwartz@gmail.com" target="_blank">betsy.schwartz@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Doesn't "0" mean that it should NOT be running, or is that only if the<br>
minimum AND maximum are zero?</blockquote><div><br></div><div>The latter, or if min=0 and max=-1.</div><div><br></div><div>The min and max define the permitted range, and are inclusive (a value of exactly the min or the max is permitted).</div>

<div><br></div><div>min max -> meaning, "display text"</div><div>0 -1 -> must have exactly 0 running, "found X, req. none"</div><div>1 -1 -> must have 1 or more running, "found X, req. 1 or more"</div>

<div>0 0 -> must have exactly 0 running (ie, not running), "found X, req. at most 0"</div><div>0 1 -> must have zero or one instances, "found X, req. at most 1"</div><div>1 1 -> must have exactly 1 running, "found X, req. between 1 and 1"</div>

<div>0 3 -> must have no more than 3 running, but can have as few as zero, "found X, req. at most 3"</div><div><br></div><div>As Larry said, -1 is only special when it is a maximum.</div><div><br></div><div>
J</div>
<div><br></div></div>