diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2012-01-06 13:03:06 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2012-01-06 13:03:06 -0800 |
commit | 8e5674fb5cb31fd872b9b74fde0430603806a48a (patch) | |
tree | 3e51952c9d42078a2fef42b428f2996ce6b5d085 /deps/v8/src/flag-definitions.h | |
parent | 42281124d4b83b0e99baf5d56b696ef242399f51 (diff) | |
download | node-new-8e5674fb5cb31fd872b9b74fde0430603806a48a.tar.gz |
Upgrade V8 to 3.8.5
Diffstat (limited to 'deps/v8/src/flag-definitions.h')
-rw-r--r-- | deps/v8/src/flag-definitions.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/deps/v8/src/flag-definitions.h b/deps/v8/src/flag-definitions.h index 1ae1b17eb5..07060dcb03 100644 --- a/deps/v8/src/flag-definitions.h +++ b/deps/v8/src/flag-definitions.h @@ -349,6 +349,14 @@ DEFINE_bool(trace_exception, false, "print stack trace when throwing exceptions") DEFINE_bool(preallocate_message_memory, false, "preallocate some memory to build stack traces.") +DEFINE_bool(randomize_string_hashes, + true, + "randomize string hashes to avoid predictable hash collisions " + "(with snapshots this option cannot override the baked-in seed)") +DEFINE_int(string_hash_seed, + 0, + "Fixed seed to use to string hashing (0 means random)" + "(with snapshots this option cannot override the baked-in seed)") // v8.cc DEFINE_bool(preemption, false, |