diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-10-25 12:21:59 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-10-25 12:21:59 +0000 |
commit | 494c6264145f989001e9cde0ad06e1f6d94f1a66 (patch) | |
tree | 94cb012a6200bf55d6836591067a795699858577 /winsup/cygwin/devices.in | |
parent | 8ef76ab6f9320b859ef7c6934bdc96762205b264 (diff) | |
download | newlib-494c6264145f989001e9cde0ad06e1f6d94f1a66.zip newlib-494c6264145f989001e9cde0ad06e1f6d94f1a66.tar.gz newlib-494c6264145f989001e9cde0ad06e1f6d94f1a66.tar.bz2 |
* devices.in (dev_storage): Map /dev/random and /dev/urandom to
\Device\Null.
* devices.cc: Regenerate.
* fhandler.h (fhandler_dev_random::open): Drop declaration.
(fhandler_dev_random::close): Ditto.
(fhandler_dev_random::crypt_gen_random): Convert to static method.
* fhandler_random.cc (fhandler_dev_random::open): Remove so that default
fhandler_base::open is used to open \Device\Null.
(fhandler_dev_random::close): Ditto.
* fhandler_socket.cc (entropy_source): Delete.
(fhandler_socket::af_local_set_secret): Remove entropy_source code and
call fhandler_dev_random::crypt_gen_random directly instead.
Diffstat (limited to 'winsup/cygwin/devices.in')
-rw-r--r-- | winsup/cygwin/devices.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/devices.in b/winsup/cygwin/devices.in index ea26a53..a297b31 100644 --- a/winsup/cygwin/devices.in +++ b/winsup/cygwin/devices.in @@ -154,8 +154,8 @@ const device dev_error_storage = "/dev/null", BRACK(FH_NULL), "\\Device\\Null", exists_ntdev, S_IFCHR "/dev/zero", BRACK(FH_ZERO), "\\Device\\Null", exists_ntdev, S_IFCHR "/dev/full", BRACK(FH_FULL), "\\Device\\Null", exists_ntdev, S_IFCHR -"/dev/random", BRACK(FH_RANDOM), "/dev/random", exists, S_IFCHR -"/dev/urandom", BRACK(FH_URANDOM), "/dev/urandom", exists, S_IFCHR, =urandom_dev +"/dev/random", BRACK(FH_RANDOM), "\\Device\\Null", exists_ntdev, S_IFCHR +"/dev/urandom", BRACK(FH_URANDOM), "\\Device\\Null", exists_ntdev, S_IFCHR, =urandom_dev "/dev/clipboard", BRACK(FH_CLIPBOARD), "/dev/clipboard", exists, S_IFCHR "/dev/com%(1-16)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1 - 1})), "\\??\\COM{$1}", exists_ntdev_silent, S_IFCHR "/dev/ttyS%(0-63)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1})), "\\??\\COM{$1 + 1}", exists_ntdev, S_IFCHR |