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

Avoid emulating wider atomics #196

Closed

Commits on Sep 22, 2023

  1. Avoid emulating wider atomics

    Generally, Rust eschews emulating atomics where it can.
    This is done precisely so people can write interrupt handlers in Rust,
    without accidentally arriving in other interrupt handlers,
    or other complications that such things tend to induce.
    
    No solution is yet proposed for the xtensa-esp32s2-espidf target.
    However, it would be less-than-ideal if an ecosystem grew up around
    Rust-on-Xtensa that was dependent on something historically rejected by
    upstream Rust in the cases where it was easily avoidable.
    workingjubilee committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    9be95fb View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2023

  1. Configuration menu
    Copy the full SHA
    2ea63cb View commit details
    Browse the repository at this point in the history