Files
codezero/tasks/mm0/src
Bahadir Balban 2bd26ce684 Added mmap support for MAP_SHARED + MAP_ANONYMOUS
mmap() with MAP_ANON | MAP_SHARED is used for creating shared
memory mappings that can be shared among a process and its descendants
(think fork())

Currently shmget/at creates shared virtual files on the fly and calls
do_mmap to create anonymous shared mappings. Now sys_mmap uses this
interface to create virtual files on the fly and call do_mmap on those
files.

In the future a common shared virtual file creation method should be
added and commonly used by both interfaces.
2009-05-31 15:55:16 +03:00
..
2008-09-15 17:57:09 +03:00
2008-01-13 13:53:52 +00:00
2008-01-13 13:53:52 +00:00
2009-05-01 17:48:54 +03:00
2009-05-14 15:15:30 +03:00
2009-05-14 10:57:31 +03:00
2009-05-12 18:16:25 +03:00
2009-05-01 17:48:54 +03:00