]> git.lizzy.rs Git - rust.git/commitdiff
update README
authorRalf Jung <post@ralfj.de>
Sun, 16 Feb 2020 11:37:15 +0000 (12:37 +0100)
committerRalf Jung <post@ralfj.de>
Sun, 16 Feb 2020 14:30:09 +0000 (15:30 +0100)
README.md

index cf18e6a0670bc43823d6293f2d64c5cc92c8aace..b5e54e64bc4083f3f1dfa5916dd5f98c1d8353c5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -147,8 +147,8 @@ Several `-Z` flags are relevant for Miri:
 
 * `-Zmiri-seed=<hex>` is a custom `-Z` flag added by Miri.  It configures the
   seed of the RNG that Miri uses to resolve non-determinism.  This RNG is used
-  to pick base addresses for allocations, and when the interpreted program
-  requests system entropy.  The default seed is 0.
+  to pick base addresses for allocations.  When isolation is enabled (the default),
+  this is also used to emulate system entropy.  The default seed is 0.
   **NOTE**: This entropy is not good enough for cryptographic use!  Do not
   generate secret keys in Miri or perform other kinds of cryptographic
   operations that rely on proper random numbers.
@@ -157,8 +157,8 @@ Several `-Z` flags are relevant for Miri:
   useful for debugging.  It means Miri will miss bugs in your program.  However,
   this can also help to make Miri run faster.
 * `-Zmiri-disable-isolation` disables host host isolation.  As a consequence,
-  the program has access to host resources such as environment variables and
-  randomness (and, eventually, file systems and more).
+  the program has access to host resources such as environment variables, file
+  systems, and randomness.
 * `-Zmiri-ignore-leaks` disables the memory leak checker.
 * `-Zmiri-env-exclude=<var>` keeps the `var` environment variable isolated from
   the host. Can be used multiple times to exclude several variables. The `TERM`