aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/fhandler.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-05-11 00:10:11 +0000
committerChristopher Faylor <me@cgf.cx>2003-05-11 00:10:11 +0000
commit066ca06fd0cf299c158c3a1fb45a66c738543551 (patch)
tree925031cbe47608452e3e50d440d42c59c6a7a282 /winsup/cygwin/fhandler.h
parentbf759a5ae676e51f0ffb3e1bb2b3cbda24a284ea (diff)
downloadnewlib-066ca06fd0cf299c158c3a1fb45a66c738543551.zip
newlib-066ca06fd0cf299c158c3a1fb45a66c738543551.tar.gz
newlib-066ca06fd0cf299c158c3a1fb45a66c738543551.tar.bz2
* dir.cc (readdir): Fill out new old_d_ino field.
* fhandler.h (fhandler_base::namehash): Define as ino_t. (fhandler_base::get_namehash): Ditto. * fhandler_disk_file.cc (fhandler_disk_file::fstat_helper): Accommodate new 64 bit st_ino. * fhandler_socket.cc (fhandler_socket::fstat): Ditto. * path.cc (hash_path_name): Return ino_t. * syscalls.cc (stat64_to_stat32): Convert 64 bit inode to 32 bit. * winsup.h (hash_path_name): Declare as returning ino_t. * include/cygwin/stat.h (__stat32): Use 32 bit st_ino. (__stat64): Use 64 bit st_ino. * include/cygwin/types.h (__ino64_t): Define. (__ino32_t): Ditto. (ino_t): Define appropriately.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r--winsup/cygwin/fhandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 3c4947d..23e597c 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -151,7 +151,7 @@ class fhandler_base
int access;
HANDLE io_handle;
- unsigned long namehash; /* hashed filename, used as inode num */
+ ino_t namehash; /* hashed filename, used as inode num */
protected:
/* Full unix path name of this file */
@@ -292,7 +292,7 @@ class fhandler_base
const char *get_name () { return unix_path_name; }
const char *get_win32_name () { return win32_path_name; }
- unsigned long get_namehash () { return namehash; }
+ ino_t get_namehash () { return namehash; }
virtual void hclose (HANDLE h) {CloseHandle (h);}
virtual void set_inheritance (HANDLE &h, int not_inheriting);