Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-01-21 21:19:29 +0300
committerChristopher Faylor <me@cgf.cx>2004-01-21 21:19:29 +0300
commit918f634fed57f28899ec9d2ed1d9922a57ee8cb4 (patch)
tree8667f4e62b5499cbfb0fe147dd502c3147e01103 /winsup
parent0a0c89ef546fb75187312603f074b9ac0cf5b0ae (diff)
* fhandler.cc (fhandler_base::open): Use major numbers rather than device
numbers to control special behavior for devices which take units. * fhandler_raw.cc (fhandler_dev_raw::writebuf): Ditto. (fhandler_dev_raw::fstat): Ditto. (fhandler_dev_raw::open): Ditto. (fhandler_dev_raw::ioctl): Ditto.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog10
-rw-r--r--winsup/cygwin/fhandler.cc10
-rw-r--r--winsup/cygwin/fhandler_raw.cc22
3 files changed, 23 insertions, 19 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 63f587dca..6a6f0458e 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,13 @@
+2004-01-21 Christopher Faylor <cgf@redhat.com>
+
+ * fhandler.cc (fhandler_base::open): Use major numbers rather than
+ device numbers to control special behavior for devices which take
+ units.
+ * fhandler_raw.cc (fhandler_dev_raw::writebuf): Ditto.
+ (fhandler_dev_raw::fstat): Ditto.
+ (fhandler_dev_raw::open): Ditto.
+ (fhandler_dev_raw::ioctl): Ditto.
+
2004-01-21 Nicholas Wourms <nwourms@netscape.net>
* signal.cc (sigaction): Fix if-statement typo.
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc
index 9be543a06..6d3070992 100644
--- a/winsup/cygwin/fhandler.cc
+++ b/winsup/cygwin/fhandler.cc
@@ -353,7 +353,7 @@ fhandler_base::open (int flags, mode_t mode)
if (get_query_open ())
access = 0;
- else if (get_device () == FH_TAPE)
+ else if (get_major () == DEV_TAPE_MAJOR)
access = GENERIC_READ | GENERIC_WRITE;
else if ((flags & (O_RDONLY | O_WRONLY | O_RDWR)) == O_RDONLY)
access = GENERIC_READ;
@@ -363,7 +363,7 @@ fhandler_base::open (int flags, mode_t mode)
access = GENERIC_READ | GENERIC_WRITE;
/* Allow reliable lseek on disk devices. */
- if (get_device () == FH_FLOPPY)
+ if (get_major () == DEV_FLOPPY_MAJOR)
access |= GENERIC_READ;
/* FIXME: O_EXCL handling? */
@@ -392,11 +392,11 @@ fhandler_base::open (int flags, mode_t mode)
file_attributes = FILE_ATTRIBUTE_NORMAL;
if (flags & O_DIROPEN)
file_attributes |= FILE_FLAG_BACKUP_SEMANTICS;
- if (get_device () == FH_SERIAL)
+ if (get_major () == DEV_SERIAL_MAJOR)
file_attributes |= FILE_FLAG_OVERLAPPED;
#ifdef HIDDEN_DOT_FILES
- if (flags & O_CREAT && get_device () == FH_FS)
+ if (flags & O_CREAT && dev ().isfs ())
{
char *c = strrchr (get_win32_name (), '\\');
if ((c && c[1] == '.') || *get_win32_name () == '.')
@@ -420,7 +420,7 @@ fhandler_base::open (int flags, mode_t mode)
/* If the file should actually be created and ntsec is on,
set files attributes. */
- if (flags & O_CREAT && get_device () == FH_FS && allow_ntsec && has_acls ())
+ if (flags & O_CREAT && dev ().isfs () && allow_ntsec && has_acls ())
set_security_attribute (mode, &sa, sd);
x = CreateFile (get_win32_name (), access, shared, &sa, creation_distribution,
diff --git a/winsup/cygwin/fhandler_raw.cc b/winsup/cygwin/fhandler_raw.cc
index 1ece53107..eb721a7e8 100644
--- a/winsup/cygwin/fhandler_raw.cc
+++ b/winsup/cygwin/fhandler_raw.cc
@@ -98,7 +98,7 @@ fhandler_dev_raw::writebuf (void)
int ret = 0;
memset (devbuf + devbufend, 0, devbufsiz - devbufend);
- if (get_device () != FH_TAPE)
+ if (get_major () != DEV_TAPE_MAJOR)
to_write = ((devbufend - 1) / 512 + 1) * 512;
else if (varblkop)
to_write = devbufend;
@@ -134,16 +134,10 @@ fhandler_dev_raw::fstat (struct __stat64 *buf)
{
debug_printf ("here");
- switch (get_device ())
- {
- case FH_TAPE:
- case FH_NTAPE:
- buf->st_mode = S_IFCHR | STD_RBITS | STD_WBITS | S_IWGRP | S_IWOTH;
- break;
- default:
- buf->st_mode = S_IFBLK | STD_RBITS | STD_WBITS | S_IWGRP | S_IWOTH;
- break;
- }
+ if (get_major () == DEV_TAPE_MAJOR)
+ buf->st_mode = S_IFCHR | STD_RBITS | STD_WBITS | S_IWGRP | S_IWOTH;
+ else
+ buf->st_mode = S_IFBLK | STD_RBITS | STD_WBITS | S_IWGRP | S_IWOTH;
buf->st_uid = geteuid32 ();
buf->st_gid = getegid32 ();
@@ -176,7 +170,7 @@ fhandler_dev_raw::open (int flags, mode_t)
flags |= O_BINARY;
DWORD access = GENERIC_READ | SYNCHRONIZE;
- if (get_device () == FH_TAPE
+ if (get_major () == DEV_TAPE_MAJOR
|| (flags & (O_RDONLY | O_WRONLY | O_RDWR)) == O_WRONLY
|| (flags & (O_RDONLY | O_WRONLY | O_RDWR)) == O_RDWR)
access |= GENERIC_WRITE;
@@ -274,7 +268,7 @@ fhandler_dev_raw::raw_read (void *ptr, size_t& ulen)
{
if (!varblkop && len >= devbufsiz)
{
- if (get_device () == FH_TAPE)
+ if (get_major () == DEV_TAPE_MAJOR)
bytes_to_read = (len / devbufsiz) * devbufsiz;
else
bytes_to_read = (len / 512) * 512;
@@ -538,7 +532,7 @@ fhandler_dev_raw::ioctl (unsigned int cmd, void *buf)
switch (op->rd_op)
{
case RDSETBLK:
- if (get_device () == FH_TAPE)
+ if (get_major () == DEV_TAPE_MAJOR)
{
struct mtop mop;