Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent underflow when calling delay(n) with n<2 #328

Merged
merged 5 commits into from Feb 9, 2021

Commits on Feb 8, 2021

  1. Prevent underflow when calling delay(n) with n<2

    Calling delay(1) causes a very long wait (freeze) otherwise.
    86cd463 introduced this behaviour by
    changing the cycle count from n / 4 + 1 to n / 2 which forces an
    underflow when n<2.
    ovidiusabou committed Feb 8, 2021
    Configuration menu
    Copy the full SHA
    a2edb22 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2021

  1. xtask assemble

    ovidiusabou committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    66955af View commit details
    Browse the repository at this point in the history
  2. Extra comment

    ovidiusabou committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    7b66016 View commit details
    Browse the repository at this point in the history
  3. xtask assemble

    ovidiusabou committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    aa37934 View commit details
    Browse the repository at this point in the history
  4. Update binaries

    jonas-schievink committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    fdc3ab0 View commit details
    Browse the repository at this point in the history