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

runtime: use uint32 for the channel state and select index #4633

Merged
merged 1 commit into from
Nov 27, 2024

Commits on Nov 27, 2024

  1. runtime: use uint32 for the channel state and select index

    This uses uint32 instead of uint64. The reason for this is that uint64
    atomic operations aren't universally available (especially on 32-bit
    architectures). We could also use uintptr, but that seems needlessly
    complicated: it's unlikely real-world programs will use more than a
    billion select states (2^30).
    aykevl committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    40a8566 View commit details
    Browse the repository at this point in the history