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:
authorChristopher Faylor <me@cgf.cx>2000-08-18 23:52:31 +0400
committerChristopher Faylor <me@cgf.cx>2000-08-18 23:52:31 +0400
commit25685bb10773a532cfd9b391ac7f7aa748a15d0b (patch)
treed46564cc22f8790fd8c58caacfd5d46490e8a2ad
parentdc999f678d3d06bc35cd2eae3b183afac4da1b92 (diff)
* fhandler-tut.txt: hinfo -> dtable.
-rw-r--r--winsup/doc/ChangeLog4
-rw-r--r--winsup/doc/fhandler-tut.txt4
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog
index 31bfb27f6..eef87dbf3 100644
--- a/winsup/doc/ChangeLog
+++ b/winsup/doc/ChangeLog
@@ -1,3 +1,7 @@
+Fri Aug 18 15:51:06 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * fhandler-tut.txt: hinfo -> dtable.
+
Thu Jul 20 13:01:00 2000 Corinna Vinschen <corinna@vinschen.de>
* ntsec.sgml: Add description for the new setuid ability
diff --git a/winsup/doc/fhandler-tut.txt b/winsup/doc/fhandler-tut.txt
index 52e08c768..213b32b20 100644
--- a/winsup/doc/fhandler-tut.txt
+++ b/winsup/doc/fhandler-tut.txt
@@ -8,7 +8,7 @@ Files to note:
fhandler.h - must define a new derived class here and FH_*
path.cc - to notice "/dev/zero" and mark it
fhandler_zero.cc - new
-hinfo.cc - to create the fhandler instance
+dtable.cc - to create the fhandler instance
OK, first we have to define what this new fhandler will do. In our
example case, we're going to implement the unix "/dev/zero" device,
@@ -45,7 +45,7 @@ to open "/dev/zero". Look in get_device_number; there's a long list
of cases, just add one (I added one after "null"). Also remember to
add an entry to the windows_device_names list in the right spot.
-To go along with that change, we'll need to change hinfo.cc. Look for
+To go along with that change, we'll need to change dtable.cc. Look for
FH_NULL and add a case for FH_ZERO as well.
Now we get to fhandler_zero.cc itself. Create the empty file and copy