Skip to content
Snippets Groups Projects
Commit 8819bd50 authored by Michael Neumann's avatar Michael Neumann
Browse files

Fix errno on DragonFly

__dfly_error() was removed from Rust many years ago.

DragonFly uses a thread-local errno variable, but #[thread_local] is
feature-gated and not available in stable Rust as of this writing
(Rust 1.31.0). We have to use a C extension to access it.

Tracking issue for `thread_local` stabilization:

    https://github.com/rust-lang/rust/issues/29594

Once this becomes stable, we can simply use:

    extern { #[thread_local] static errno: c_int; }
parent 0a4420db
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment