We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38be26d commit 72c1f4fCopy full SHA for 72c1f4f
Documentation/Proposals/NNNN-exit-tests.md
@@ -166,9 +166,9 @@ public enum ExitCondition: Sendable {
166
/// | Linux | `<stdlib.h>`, `<sysexits.h>` |
167
/// | Windows | `<stdlib.h>` |
168
///
169
- /// On POSIX-like systems including macOS and Linux, only the low unsigned 8
170
- /// bits (0–255) of the exit code are reliably preserved and reported to
171
- /// a parent process.
+ /// On macOS and Windows, the full exit code reported by the process is
+ /// yielded to the parent process. Linux and other POSIX-like systems may only
+ /// reliably report the low unsigned 8 bits (0–255) of the exit code.
172
case exitCode(_ exitCode: CInt)
173
174
/// The process terminated with the given signal.
0 commit comments