You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zachary Gramana edited this page Jun 1, 2015
·
1 revision
Conventions
Use 0 to mean zero, and -1 to mean disabled/undefined/unknown/not applicable.
Example: if foo_delay == 0 { // queuing disabled becomes if foo_delay < 0 { // queuing disabled. This allows 0 to mean queue, but without adding any additional delay.