This is the mail archive of the cygwin-patches@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Avoid checking a magic number of a directory.


The following patch can speed up stat() a bit.

ChangeLog:
2001-04-02  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>

	* fhandler.cc (fhandler_disk_file::open): Avoid checking a magic
	number of a directory.

Index: fhandler.cc
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/fhandler.cc,v
retrieving revision 1.55
diff -u -p -r1.55 fhandler.cc
--- fhandler.cc	2001/03/13 13:07:15	1.55
+++ fhandler.cc	2001/04/02 10:05:19
@@ -1262,6 +1262,7 @@ fhandler_disk_file::open (path_conv& rea
   extern BOOL allow_ntea;
 
   if (real_path.isdisk ()
+      && !(real_path.file_attributes () & FILE_ATTRIBUTE_DIRECTORY)
       && (real_path.exec_state () == dont_know_if_executable)
       && !allow_ntea && (!allow_ntsec || !real_path.has_acls ()))
     {

____
  | AIST      Kazuhiro Fujieda <fujieda@jaist.ac.jp>
  | HOKURIKU  School of Information Science
o_/ 1990      Japan Advanced Institute of Science and Technology


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]