refactor(fspy-shm): make Unix implementation no-std - #641
Draft
wan9chi wants to merge 1 commit into
Draft
Conversation
fspy benchmarklinuxmacoswindows |
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 03:25
2283943 to
6c6859e
Compare
wan9chi
changed the base branch from
feat/fspy-shm-sigsafe-mmap
to
feat/fspy-shm-sigsafe-unlink
August 11, 2026 03:25
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 04:24
6c6859e to
3c0970b
Compare
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 05:15
3c0970b to
db13cf2
Compare
wan9chi
changed the base branch from
feat/fspy-shm-sigsafe-unlink
to
refactor/fspy-shm-path-type
August 11, 2026 05:17
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 08:40
db13cf2 to
e07614c
Compare
Co-authored-by: GPT-5 Codex <codex@openai.com>
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 08:46
e07614c to
784a715
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
The injected runtime cannot rely on Rust std or libc initialization. Unix fspy_shm already performs every operation through sigsafe, so exposing std::io::Error and retaining std implementation types is unnecessary. Use sigsafe Error and Result aliases, core types, and a crate-level Unix no_std guard; Windows keeps its std::io API.