]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: fhandler_*: remove isdevice() and is_auto_device()
authorKen Brown <kbrown@cornell.edu>
Fri, 19 Jul 2019 19:39:35 +0000 (15:39 -0400)
committerKen Brown <kbrown@cornell.edu>
Mon, 22 Jul 2019 12:15:16 +0000 (08:15 -0400)
isdevice() is used only in the definition of is_auto_device().  And
the latter is used only once, in a context where isdevice() always
returns true.

winsup/cygwin/fhandler.h
winsup/cygwin/fhandler_raw.cc

index 7e59d84d0b654f4723fe09879b1eea6f7cb46a2a..e28ec81e349a1ba0fae0054d88be27b331ed2114 100644 (file)
@@ -414,7 +414,6 @@ public:
   virtual bool is_tty () const { return false; }
   virtual bool ispipe () const { return false; }
   virtual pid_t get_popen_pid () const {return 0;}
-  virtual bool isdevice () const { return true; }
   virtual bool isfifo () const { return false; }
   virtual int ptsname_r (char *, size_t);
   virtual class fhandler_socket *is_socket () { return NULL; }
@@ -459,7 +458,6 @@ public:
   virtual void seekdir (DIR *, long);
   virtual void rewinddir (DIR *);
   virtual int closedir (DIR *);
-  bool is_auto_device () {return isdevice () && !dev ().isfs ();}
   bool is_fs_special () {return pc.is_fs_special ();}
   bool issymlink () {return pc.issymlink ();}
   bool __reg2 device_access_denied (int);
@@ -1527,7 +1525,6 @@ class fhandler_disk_file: public fhandler_base
   int dup (fhandler_base *child, int);
   void fixup_after_fork (HANDLE parent);
   int mand_lock (int, struct flock *);
-  bool isdevice () const { return false; }
   int __reg2 fstat (struct stat *buf);
   int __reg1 fchmod (mode_t mode);
   int __reg2 fchown (uid_t uid, gid_t gid);
index bd47b60103d8c411475ac69f2fae4d7cef1e9ffa..7c341d8957ad4635a8af2a6fcfccf581c9274a50 100644 (file)
@@ -38,7 +38,7 @@ fhandler_dev_raw::fstat (struct stat *buf)
   debug_printf ("here");
 
   fhandler_base::fstat (buf);
-  if (is_auto_device ())
+  if (!dev ().isfs ())
     {
       if (get_major () == DEV_TAPE_MAJOR)
        buf->st_mode = S_IFCHR | STD_RBITS | STD_WBITS | S_IWGRP | S_IWOTH;
This page took 0.036931 seconds and 5 git commands to generate.