diff options
author | Andreas Jaeger <aj@suse.de> | 2001-06-06 19:02:01 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-06-06 19:02:01 +0000 |
commit | b73147d0eb348ca350fa7ec80e731841013fe348 (patch) | |
tree | 967f3eadb469e4cb9bdde5ee095332563c758e63 /manual/llio.texi | |
parent | d1cf3e71726808cf249ee361d8d47c8affd9e429 (diff) | |
download | glibc-b73147d0eb348ca350fa7ec80e731841013fe348.zip glibc-b73147d0eb348ca350fa7ec80e731841013fe348.tar.gz glibc-b73147d0eb348ca350fa7ec80e731841013fe348.tar.bz2 |
Update.
2001-06-06 Andreas Jaeger <aj@suse.de>
* manual/llio.texi (Memory-mapped I/O): Clarify that mapping is to
offset+length-1.
Reported by Robert Bernecky <bernecky@acm.org>.
Diffstat (limited to 'manual/llio.texi')
-rw-r--r-- | manual/llio.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/llio.texi b/manual/llio.texi index c45285b..ea72e95 100644 --- a/manual/llio.texi +++ b/manual/llio.texi @@ -1152,7 +1152,7 @@ These functions are declared in @file{sys/mman.h}. @deftypefun {void *} mmap (void *@var{address}, size_t @var{length},int @var{protect}, int @var{flags}, int @var{filedes}, off_t @var{offset}) The @code{mmap} function creates a new mapping, connected to bytes -(@var{offset}) to (@var{offset} + @var{length}) in the file open on +(@var{offset}) to (@var{offset} + @var{length} - 1) in the file open on @var{filedes}. @var{address} gives a preferred starting address for the mapping. |