diff options
author | Christopher Faylor <me@cgf.cx> | 2003-12-15 04:16:42 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-12-15 04:16:42 +0000 |
commit | 9908d9977b131249201b9c19219fd7d61fd65701 (patch) | |
tree | f57144fb183b3f75b68602d708a6704fde7be29a /winsup/cygwin/winsup.h | |
parent | 228f99a6c1a60d778fe0182ad9e66b8cd755daf8 (diff) | |
download | newlib-9908d9977b131249201b9c19219fd7d61fd65701.zip newlib-9908d9977b131249201b9c19219fd7d61fd65701.tar.gz newlib-9908d9977b131249201b9c19219fd7d61fd65701.tar.bz2 |
* winsup.h (access_worker): Declare with added fhandler_base parameter.
* syscalls.cc (access_worker): Accommodate extra fhandler_base argument. Use
it instead of stat_worker to determine stat information, when appropriate.
* fhandler.cc (fhandler_base::device_access_denied): Pass fhandler pointer to
access_worker so that it can use the proper method for determining stat
information.
* fhandler_disk_file.cc (fhandler_disk_file::opendir): Ditto.
Diffstat (limited to 'winsup/cygwin/winsup.h')
-rw-r--r-- | winsup/cygwin/winsup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h index 26be3d0..2d60fcd 100644 --- a/winsup/cygwin/winsup.h +++ b/winsup/cygwin/winsup.h @@ -296,7 +296,7 @@ int symlink_worker (const char *, const char *, bool, bool) __attribute__ ((regparm (3))); class path_conv; -int access_worker (path_conv&, int) __attribute__ ((regparm (2))); +int access_worker (path_conv&, int, class fhandler_base * = NULL) __attribute__ ((regparm (3))); int fcntl_worker (int fd, int cmd, void *arg); |