freebsd-src/sys/vm
Peter Wemm dabee6fecc kern_descrip.c: add fdshare()/fdcopy()
kern_fork.c: add the tiny bit of code for rfork operation.
kern/sysv_*: shmfork() takes one less arg, it was never used.
sys/shm.h: drop "isvfork" arg from shmfork() prototype
sys/param.h: declare rfork args.. (this is where OpenBSD put it..)
sys/filedesc.h: protos for fdshare/fdcopy.
vm/vm_mmap.c: add minherit code, add rounding to mmap() type args where
it makes sense.
vm/*: drop unused isvfork arg.

Note: this rfork() implementation copies the address space mappings,
it does not connect the mappings together.  ie: once the two processes
have split, the pages may be shared, but the address space is not. If one
does a mmap() etc, it does not appear in the other.  This makes it not
useful for pthreads, but it is useful in it's own right for having
light-weight threads in a static shared address space.

Obtained from: Original by Ron Minnich, extended by OpenBSD
1996-02-23 18:49:25 +00:00
..
default_pager.c Eliminated many redundant vm_map_lookup operations for vm_mmap. 1996-01-19 04:00:31 +00:00
default_pager.h Another mega commit to staticize things. 1995-12-14 09:55:16 +00:00
device_pager.c Eliminated many redundant vm_map_lookup operations for vm_mmap. 1996-01-19 04:00:31 +00:00
device_pager.h Another mega commit to staticize things. 1995-12-14 09:55:16 +00:00
kern_lock.c Untangled the vm.h include file spaghetti. 1995-12-07 12:48:31 +00:00
lock.h Fix pollution of application namespace by declarations of kernel 1995-10-05 01:11:48 +00:00
pmap.h Cleaned up prototypes in pmap headers: removed ones for nonexistent 1995-12-17 07:39:05 +00:00
swap_pager.c "out of space" -> "out of swap space". 1996-01-31 13:14:21 +00:00
swap_pager.h Fix a bunch of spelling errors in the comment fields of 1996-01-30 23:02:38 +00:00
vm.h Moved the declaration of boolean_t from <vm/vm_param.h> to 1995-12-10 02:34:29 +00:00
vm_extern.h kern_descrip.c: add fdshare()/fdcopy() 1996-02-23 18:49:25 +00:00
vm_fault.c Eliminated many redundant vm_map_lookup operations for vm_mmap. 1996-01-19 04:00:31 +00:00
vm_glue.c kern_descrip.c: add fdshare()/fdcopy() 1996-02-23 18:49:25 +00:00
vm_inherit.h NOTE: libkvm, w, ps, 'top', and any other utility which depends on struct 1995-07-13 08:48:48 +00:00
vm_init.c Changes to support 1Tb filesizes. Pages are now named by an 1995-12-11 04:58:34 +00:00
vm_kern.c Print a more descriptive message when the mb_map is filled (out of mbuf 1996-01-31 12:05:52 +00:00
vm_kern.h Eliminate sloppy common-style declarations. There should be none left for 1995-07-29 11:44:31 +00:00
vm_map.c Fixed a really bogus problem with msync ripping pages away from 1996-02-11 22:03:49 +00:00
vm_map.h Fix a bunch of spelling errors in the comment fields of 1996-01-30 23:02:38 +00:00
vm_meter.c Another mega commit to staticize things. 1995-12-14 09:55:16 +00:00
vm_mmap.c kern_descrip.c: add fdshare()/fdcopy() 1996-02-23 18:49:25 +00:00
vm_object.c Eliminated many redundant vm_map_lookup operations for vm_mmap. 1996-01-19 04:00:31 +00:00
vm_object.h Another mega commit to staticize things. 1995-12-14 09:55:16 +00:00
vm_page.c Added a `boundary' arg to vm_alloc_page_contig(). Previously the only 1996-01-27 00:13:33 +00:00
vm_page.h Fix a bunch of spelling errors in the comment fields of 1996-01-30 23:02:38 +00:00
vm_pageout.c Add a "NO_SWAPPING" option to disable swapping. This was originally done 1996-02-22 10:57:37 +00:00
vm_pageout.h Completed function declarations and/or added prototypes. 1995-11-21 12:55:26 +00:00
vm_pager.c Another mega commit to staticize things. 1995-12-14 09:55:16 +00:00
vm_pager.h Changes to support 1Tb filesizes. Pages are now named by an 1995-12-11 04:58:34 +00:00
vm_param.h Moved the declaration of boolean_t from <vm/vm_param.h> to 1995-12-10 02:34:29 +00:00
vm_prot.h Untangled the vm.h include file spaghetti. 1995-12-07 12:48:31 +00:00
vm_swap.c i386/i386/conf.c is no longer needed.. remove it from files.i386 1995-12-21 20:09:46 +00:00
vm_unix.c Eliminated many redundant vm_map_lookup operations for vm_mmap. 1996-01-19 04:00:31 +00:00
vnode_pager.c Eliminated many redundant vm_map_lookup operations for vm_mmap. 1996-01-19 04:00:31 +00:00
vnode_pager.h Another mega commit to staticize things. 1995-12-14 09:55:16 +00:00