* random.c (random_seed): O_NONBLOCK isn't defined on some

platforms. [ruby-dev:25417]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2005-01-06 08:24:04 +00:00
parent a12ac9b17d
commit 8531657741
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Jan 6 17:22:41 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* random.c (random_seed): O_NONBLOCK isn't defined on some
platforms. [ruby-dev:25417]
Thu Jan 6 13:45:35 2005 Tanaka Akira <akr@m17n.org> Thu Jan 6 13:45:35 2005 Tanaka Akira <akr@m17n.org>
* lib/time.rb: recognize +00:00 and GMT as a localtime. * lib/time.rb: recognize +00:00 and GMT as a localtime.

View File

@ -275,7 +275,10 @@ random_seed()
memset(digits, 0, big->len * SIZEOF_BDIGITS); memset(digits, 0, big->len * SIZEOF_BDIGITS);
#ifdef S_ISCHR #ifdef S_ISCHR
if ((fd = open("/dev/urandom", O_RDONLY|O_NONBLOCK if ((fd = open("/dev/urandom", O_RDONLY
#ifdef O_NONBLOCK
|O_NONBLOCK
#endif
#ifdef O_NOCTTY #ifdef O_NOCTTY
|O_NOCTTY |O_NOCTTY
#endif #endif