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>2001-12-10 06:35:54 +0300
committerChristopher Faylor <me@cgf.cx>2001-12-10 06:35:54 +0300
commitcf77faefc8c0a468fb70947ffcd78d0d5b890d6f (patch)
tree291ebbb97bdef41f4d409ffee2b58458bf6d9450 /winsup/cygwin/how-fhandlers-work.txt
parent170f4c43507f8297fe4068c9581af2ef79cec9fb (diff)
whitespace cleanup
Diffstat (limited to 'winsup/cygwin/how-fhandlers-work.txt')
-rw-r--r--winsup/cygwin/how-fhandlers-work.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/how-fhandlers-work.txt b/winsup/cygwin/how-fhandlers-work.txt
index f45350af6..5e810a780 100644
--- a/winsup/cygwin/how-fhandlers-work.txt
+++ b/winsup/cygwin/how-fhandlers-work.txt
@@ -18,7 +18,7 @@ When a file is opened - not necesarily via open() a fd is assigned to it. The fd
includes a pointer to the actual fhandler that operates this specific file. All
file-oriented system calls then operate off this basic structure.
-For example, lets example lseek ().
+For example, lets examine lseek ().
extern "C" off_t
_lseek (int fd, off_t pos, int dir)
@@ -51,7 +51,7 @@ The sigframe thisframe (mainthread); is signal related - see
The if, else if, else tests (in order)
* the validity of the dir parameter,
* is the fd being passed actually open? (cannot seek on a closed fd)
-* call the lseek virtual function in the associated fhandler.
+* call the lseek virtual function in the associated fhandler.
So as you can see, there is no code that attempts to understand the nature of
the fhandler.
@@ -61,5 +61,5 @@ inheritable cross-process need to implement fixup-after-fork and recreate those
objects. HANDLES can be inherited, but memory mapped regions (for example)
cannot.
-For an example step-by-step to create a new fhandler, see
+For an example step-by-step to create a new fhandler, see
../doc/fhandler-tut.txt