diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-23 14:20:28 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-23 14:20:28 +0000 |
commit | 296a8a63696031fd4cf7fa9ba74e905e00c56d2d (patch) | |
tree | 8317fd5e2cc3dfc58cf1730fbc63cb829f2d2ba6 /winsup/cygwin/devices.in | |
parent | b5cb5c9e642a3b868024345fd31c71052e4b0932 (diff) | |
download | cygnal-296a8a63696031fd4cf7fa9ba74e905e00c56d2d.tar.gz cygnal-296a8a63696031fd4cf7fa9ba74e905e00c56d2d.tar.bz2 cygnal-296a8a63696031fd4cf7fa9ba74e905e00c56d2d.zip |
* devices.in: Change native device name to native NT device name for
/dev/null, /dev/comX and /dev/ttySx.
* devices.cc: Regenerate.
* fhandler.cc (fhandler_base::open_9x): Remove.
(fhandler_base::open): Don't test for DOS device name, don't call
open_9x.
(fhandler_dev_null::open): Remove.
* fhandler.h (class fhandler_base): Drop open_9x declaration.
(class fhandler_dev_null): Drop open declaration.
Diffstat (limited to 'winsup/cygwin/devices.in')
-rw-r--r-- | winsup/cygwin/devices.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/devices.in b/winsup/cygwin/devices.in index 22de0c2ee..cbafcf259 100644 --- a/winsup/cygwin/devices.in +++ b/winsup/cygwin/devices.in @@ -69,7 +69,7 @@ const device dev_bad_storage = "/dev/dsp", BRACK(FH_OSS_DSP), "\\dev\\dsp" "/dev/conin", BRACK(FH_CONIN), "conin" "/dev/conout", BRACK(FH_CONOUT), "conout" -"/dev/null", BRACK(FH_NULL), "nul" +"/dev/null", BRACK(FH_NULL), "\\Device\\Null" "/dev/zero", BRACK(FH_ZERO), "\\dev\\zero" "/dev/full", BRACK(FH_FULL), "\\dev\\full" "/dev/random", BRACK(FH_RANDOM), "\\dev\\random" @@ -78,8 +78,8 @@ const device dev_bad_storage = "/dev/kmem", BRACK(FH_KMEM), "\\dev\\mem" "/dev/clipboard", BRACK(FH_CLIPBOARD), "\\dev\\clipboard" "/dev/port", BRACK(FH_PORT), "\\dev\\port" -"/dev/com%(1-16)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1})), "\\\\.\\com{$1}" -"/dev/ttyS%(0-63)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1 + 1})), "\\\\.\\com{$1 + 1}" +"/dev/com%(1-16)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1 - 1})), "\\Device\\Serial{$1 - 1}" +"/dev/ttyS%(0-63)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1})), "\\Device\\Serial{$1}" "/dev/pipe", BRACK(FH_PIPE), "\\dev\\pipe" "/dev/fifo", BRACK(FH_FIFO), "\\dev\\fifo" "/dev/st%(0-127)d", BRACK(FHDEV(DEV_TAPE_MAJOR, {$1})), "\\Device\\Tape{$1}" |