diff options
author | Christopher Faylor <me@cgf.cx> | 2003-05-11 00:10:11 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-05-11 00:10:11 +0000 |
commit | 066ca06fd0cf299c158c3a1fb45a66c738543551 (patch) | |
tree | 925031cbe47608452e3e50d440d42c59c6a7a282 /winsup/cygwin/winsup.h | |
parent | bf759a5ae676e51f0ffb3e1bb2b3cbda24a284ea (diff) | |
download | newlib-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/winsup.h')
-rw-r--r-- | winsup/cygwin/winsup.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h index 8060ffa..70a9c12 100644 --- a/winsup/cygwin/winsup.h +++ b/winsup/cygwin/winsup.h @@ -24,6 +24,7 @@ details. */ #endif #define NO_COPY __attribute__((nocommon)) __attribute__((section(".data_cygwin_nocopy"))) +#define NO_COPY_INIT __attribute__((section(".data_cygwin_nocopy"))) #if !defined(__STDC_VERSION__) || __STDC_VERSION__ >= 199900L #define NEW_MACRO_VARARGS @@ -198,7 +199,7 @@ int __stdcall writable_directory (const char *file); int __stdcall stat_dev (DWORD, int, unsigned long, struct __stat64 *); extern BOOL allow_ntsec; -unsigned long __stdcall hash_path_name (ino_t hash, const char *name) __attribute__ ((regparm(2))); +ino_t __stdcall hash_path_name (ino_t hash, const char *name) __attribute__ ((regparm(2))); void __stdcall nofinalslash (const char *src, char *dst) __attribute__ ((regparm(2))); extern "C" char *__stdcall rootdir (char *full_path) __attribute__ ((regparm(1))); |