summaryrefslogtreecommitdiff
path: root/doc/ux-mmap.txt
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2022-10-24 21:03:42 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2022-10-24 21:03:42 +0200
commit532d4a24e2013262dfa41fd85c06a9715c99abf7 (patch)
tree3b7f4fac1e983ead408c20a2f330b41aa2399ab1 /doc/ux-mmap.txt
parenta1bdcfa3ca8af4ddb69ee57d716aa943cf3fe94a (diff)
New upstream version 4.7upstream/4.7
Diffstat (limited to 'doc/ux-mmap.txt')
-rw-r--r--doc/ux-mmap.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/ux-mmap.txt b/doc/ux-mmap.txt
deleted file mode 100644
index 43f5ac9..0000000
--- a/doc/ux-mmap.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-===============================================================================
-ux-mmap - Unix compatibility functions 2006-02-25
-
-
-DESCRIPTION
-
- libHX provides a Linux-style mmap() function for Win32.
-
-
-SYNOPSIS
-
- #include <libHX.h>
-
- void *mmap(void *START, size_t LENGTH, int PROT, int FLAGS, int FD,
- off_t OFFSET);
-
-
-mmap()
-
- See the Linux manual page mmap(2) for details. Many flags described in
- mmap(2) do not work. What does work: PROT_NONE, PROT_READ, PROT_WRITE,
- PROT_EXEC (only WinPX SP2 or WinServer2003 SP1 or up), MAP_SHARED and
- MAP_PRIVATE. MAP_SHARED is the default if no MAP_PRIVATE is given.
-
-
-===============================================================================