Commit 2b789106 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Added mmap module -- map a view of a file into memory on Win32 and Unix.

(Needs testing on Win32.)
parent 3951a22c
...@@ -150,6 +150,7 @@ fcntl fcntlmodule.c # fcntl(2) and ioctl(2) ...@@ -150,6 +150,7 @@ fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
pwd pwdmodule.c # pwd(3) pwd pwdmodule.c # pwd(3)
grp grpmodule.c # grp(3) grp grpmodule.c # grp(3)
errno errnomodule.c # posix (UNIX) errno values errno errnomodule.c # posix (UNIX) errno values
mmap mmapmodule.c # Memory-mapped files (also works on Win32)
select selectmodule.c # select(2); not on ancient System V select selectmodule.c # select(2); not on ancient System V
socket socketmodule.c # socket(2); not on ancient System V socket socketmodule.c # socket(2); not on ancient System V
#_socket socketmodule.c # socket(2); use this one for BeOS sockets #_socket socketmodule.c # socket(2); use this one for BeOS sockets
...@@ -418,6 +419,5 @@ cPickle cPickle.c ...@@ -418,6 +419,5 @@ cPickle cPickle.c
# See http://www.cdrom.com/pub/infozip/zlib/ # See http://www.cdrom.com/pub/infozip/zlib/
#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
# Example -- included for reference only: # Example -- included for reference only:
# xx xxmodule.c # xx xxmodule.c
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment