| Index: Source/wtf/RandomNumberSeed.h
|
| diff --git a/Source/wtf/RandomNumberSeed.h b/Source/wtf/RandomNumberSeed.h
|
| index 1cdd5f38d9782476908e1743af345b7d8dce9214..e6a47ee6939a5dc75f3b182b2b340969f900707b 100644
|
| --- a/Source/wtf/RandomNumberSeed.h
|
| +++ b/Source/wtf/RandomNumberSeed.h
|
| @@ -47,6 +47,9 @@ inline void initializeRandomNumberGenerator()
|
| // On Darwin we use arc4random which initialises itself.
|
| #elif COMPILER(MSVC) && defined(_CRT_RAND_S)
|
| // On Windows we use rand_s which initialises itself
|
| +#elif OS(NACL)
|
| + // FIXME: We need to figure out how to seed the random number generator inside NaCl.
|
| + CRASH();
|
| #elif OS(UNIX)
|
| // srandomdev is not guaranteed to exist on linux so we use this poor seed, this should be improved
|
| timeval time;
|
|
|