From 263a41a92685e0719156712caff3571871b4e76a Mon Sep 17 00:00:00 2001 From: Red Bear OS Date: Sun, 26 Jul 2026 16:58:00 +0900 Subject: [PATCH] bootstrap: fix broken INITNSMGR-CONCURRENCY-DESIGN.md reference After commit 589a1044e6 (parent repo) moved local/docs/INITNSMGR-CONCURRENCY-DESIGN.md to local/docs/legacy-obsolete-2026-07-25/, the doc reference in bootstrap/src/initnsmgr.rs became broken. Update it to point at the archive path so future readers can find the design rationale. Companion to the LG Gram Round 1 parent-repo commit (same date). --- bootstrap/src/initnsmgr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/src/initnsmgr.rs b/bootstrap/src/initnsmgr.rs index 2ef53b1a78..4d1443a9d5 100644 --- a/bootstrap/src/initnsmgr.rs +++ b/bootstrap/src/initnsmgr.rs @@ -15,7 +15,7 @@ use redox_rt::proc::FdGuard; // single-threaded Rc. NOTE: this Mutex is a spinlock -- never hold it // across a blocking syscall; resolve the cap_fd under the lock, clone the Arc, // and do the blocking openat with the lock released. See -// local/docs/INITNSMGR-CONCURRENCY-DESIGN.md. +// local/docs/legacy-obsolete-2026-07-25/INITNSMGR-CONCURRENCY-DESIGN.md. use redox_rt::sync::Mutex; use redox_scheme::{ CallerCtx, Id, IntoTag, OpenResult, RequestKind, Response, SendFdRequest, SignalBehavior,