SERVER-119622: AtomicWord -> Atomic (#48014)

GitOrigin-RevId: f68b436659632c323ca66b23aa9b36e9e7142a10
This commit is contained in:
Billy Donahue 2026-02-12 14:04:15 -05:00 committed by MongoDB Bot
parent 8a7056918c
commit 7bf9d02fcd

View File

@ -99,7 +99,7 @@ must be unique across the server instance. More information on the specific fiel
- `set_at` (required): Must contain the value `startup`, `runtime`, [`startup`, `runtime`], or
`cluster`. If `runtime` is specified along with `cpp_varname`, then `decltype(cpp_varname)` must
refer to a thread-safe storage type, specifically: `AtomicWord<T>`, `std::atomic<T>`,
refer to a thread-safe storage type, specifically: `Atomic<T>`, `std::atomic<T>`,
or `boost::synchronized<T>`. Parameters declared as `cluster` can only be set at runtime and exhibit
numerous differences. See [Cluster Server Parameters](cluster-server-parameters) below.