зеркало из https://github.com/github/ruby.git
* 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:
Родитель
a12ac9b17d
Коммит
8531657741
|
@ -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>
|
||||
|
||||
* lib/time.rb: recognize +00:00 and GMT as a localtime.
|
||||
|
|
5
random.c
5
random.c
|
@ -275,7 +275,10 @@ random_seed()
|
|||
memset(digits, 0, big->len * SIZEOF_BDIGITS);
|
||||
|
||||
#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
|
||||
|O_NOCTTY
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче