diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-01-17 19:26:58 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-01-17 19:26:58 +0000 |
commit | 96d7dee2f0ae6f69124d2cd2f495e93135dbb741 (patch) | |
tree | d08fe91a382b48eb6fb11e3559a6466c5cd53c16 /winsup/cygwin/path.h | |
parent | 12ffdde350a85a5bbdfac74dad9a3732ca136088 (diff) | |
download | cygnal-96d7dee2f0ae6f69124d2cd2f495e93135dbb741.tar.gz cygnal-96d7dee2f0ae6f69124d2cd2f495e93135dbb741.tar.bz2 cygnal-96d7dee2f0ae6f69124d2cd2f495e93135dbb741.zip |
* Makefile.in (DLL_OFILES): Add fhandler_procnet.o.
* autoload.cc (GetAdaptersAddresses): Define.
* devices.h (FH_PROCNET): Define new device.
* devices.in (dev_procnet_storage): Add "/proc/net" entry.
* devices.cc: Regenerate.
* dir.cc (readdir_worker): Use isproc_dev macro.
* dtable.cc (build_fh_pc): Add FH_PROCNET.
* fhandler.h (class fhandler_procnet): New class.
* fhandler_proc.cc: Add "net" subdirectory handling.
* fhandler_procnet.cc: New file handling "/proc/net" directory.
* path.cc (isvirtual_dev): Move to path.h.
* path.h (isproc_dev): New macro to identify /proc files by device.
(isvirtual_dev): Moved here. Define using isproc_dev.
* syscalls.cc (unlink): Use isproc_dev macro.
* wincap.h (wincapc::has_gaa_prefixes): New element.
(wincapc::has_gaa_on_link_prefix): New element.
* wincap.cc: Implement above elements throughout.
(wincapc::init): Check XP for service pack and set has_gaa_prefixes
appropriately.
* include/cygwin/in6.h: Include asm/byteorder.h.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r-- | winsup/cygwin/path.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 9b4c85ea2..336353a4b 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -1,7 +1,7 @@ /* path.h: path data structures Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, - 2006 Red Hat, Inc. + 2006, 2007 Red Hat, Inc. This file is part of Cygwin. @@ -15,6 +15,13 @@ details. */ #include <fcntl.h> #include <ntdef.h> +#define isproc_dev(devn) \ + (devn == FH_PROC || devn == FH_REGISTRY || devn == FH_PROCESS || \ + devn == FH_PROCNET) + +#define isvirtual_dev(devn) \ + (isproc_dev (devn) || devn == FH_CYGDRIVE || devn == FH_NETDRIVE) + extern PUNICODE_STRING get_nt_native_path (const char *, UNICODE_STRING &); inline bool |