Replace U+00B5 (MICRO SIGN) with plain 'us' to avoid Unicode warning

Gitea flags U+00B5 as ambiguous — visually identical to U+03BC
(GREEK SMALL LETTER MU). Using 'us' is the standard engineering
abbreviation and avoids the warning.
This commit is contained in:
Huamonarch 2026-05-13 10:33:08 +08:00
parent 9bb810d9ed
commit 02447c733a

View File

@ -53,7 +53,7 @@ struct ShmSpinLock {
continue;
}
// 持有者存活,短暂退避
struct timespec ts = {0, 100000}; // 100µs
struct timespec ts = {0, 100000}; // 100us
::nanosleep(&ts, nullptr);
}
}