Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2006-12-06 19:33:03 +0300
committerCorinna Vinschen <corinna@vinschen.de>2006-12-06 19:33:03 +0300
commit8b8273781b6a34f1e1f0e375349b64643bbf987c (patch)
tree555df553c405682d2147e031d257274befed3079 /winsup/cygwin/fhandler_mem.cc
parent017b276a7623b6bdd1d3d0310c83d208114fb0d1 (diff)
* fhandler_mem.cc (fhandler_dev_mem::open): Fix comment.
* wincap.cc (has_physical_mem_access): Reflect the fact that physical memory access has been made a protected operation beginning with 2003 Server.
Diffstat (limited to 'winsup/cygwin/fhandler_mem.cc')
-rw-r--r--winsup/cygwin/fhandler_mem.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_mem.cc b/winsup/cygwin/fhandler_mem.cc
index 24d681d4e..4df2ddf10 100644
--- a/winsup/cygwin/fhandler_mem.cc
+++ b/winsup/cygwin/fhandler_mem.cc
@@ -37,7 +37,7 @@ fhandler_dev_mem::open (int flags, mode_t)
if (!wincap.has_physical_mem_access ())
{
set_errno (ENOENT);
- debug_printf ("%s is accessible under NT/W2K only", dev ().name);
+ debug_printf ("%s is accessible under NT4/W2K/XP only", dev ().name);
return 0;
}