refactor(fspy-shm): store Unix paths inline - #645
Closed
wan9chi wants to merge 8 commits into
Closed
Conversation
wan9chi
force-pushed
the
feat/fspy-shm-inline-unix-id
branch
from
August 11, 2026 02:41
cea9bac to
4af1f70
Compare
fspy benchmarklinuxmacoswindows |
wan9chi
force-pushed
the
feat/fspy-shm-inline-unix-id
branch
from
August 11, 2026 02:59
4af1f70 to
957b632
Compare
wan9chi
changed the base branch from
feat/fspy-shm-sigsafe-random
to
refactor/fspy-shm-caller-path
August 11, 2026 03:00
wan9chi
force-pushed
the
feat/fspy-shm-inline-unix-id
branch
from
August 11, 2026 03:01
957b632 to
218fcd4
Compare
wan9chi
changed the base branch from
refactor/fspy-shm-caller-path
to
feat/fspy-shm-platform-errors
August 11, 2026 03:25
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 03:25
2283943 to
6c6859e
Compare
wan9chi
force-pushed
the
feat/fspy-shm-inline-unix-id
branch
2 times, most recently
from
August 11, 2026 03:37
61d8de3 to
7d80d5a
Compare
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
Co-authored-by: GPT-5 Codex <[email protected]>
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-inline-unix-id
branch
from
August 11, 2026 04:24
7d80d5a to
75547e6
Compare
wan9chi
force-pushed
the
feat/fspy-shm-platform-errors
branch
from
August 11, 2026 05:15
3c0970b to
db13cf2
Compare
Member
Author
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
After
fspy_shmaccepts a caller-owned path and exposessigsafeerrors on Unix,ShmKeeperstill stores that path in an allocatingPathBufand reconstructs a C string during cleanup. Store the validated absolute path in fixed-capacity inline storage so creation and drop need no heap allocation and the keeper is usable by the injected runtime.