aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_fork.c
Commit message (Expand)AuthorAgeFilesLines
* revert last commit temporarily due to whining on the lists.Matthew Dillon2002-02-261-8/+1
* STAGE-1 of 3 commit - allow (but do not require) interrupts to remainMatthew Dillon2002-02-261-1/+8
* Lock struct pgrp, session and sigio.Seigo Tanimura2002-02-231-1/+7
* Add some DIAGNOSTIC code.Julian Elischer2002-02-221-6/+9
* Convert p->p_runtime and PCPU(switchtime) to bintime format.Poul-Henning Kamp2002-02-221-2/+2
* A few misc forkbomb defenses:Mike Silbersack2002-02-191-2/+5
* If the credential on an incoming thread is correct, don't botherJulian Elischer2002-02-171-0/+2
* Fix a couple of style bugs introduced (or touched by) previous commit.Peter Wemm2002-02-071-1/+0
* Pre-KSE/M3 commit.Julian Elischer2002-02-071-30/+33
* SMP Lock struct file, filedesc and the global file list.Alfred Perlstein2002-01-131-3/+9
* GC fast_vfork; it's not actually referenced anywhere.Mike Silbersack2002-01-091-4/+0
* Return EINVAL if kernel only flags are passed to the rfork syscall ratherJohn Baldwin2001-12-191-2/+4
* Modify the critical section API as follows:John Baldwin2001-12-181-7/+2
* Fix some nits in fork_exit() so it more properly duplicates the backendJohn Baldwin2001-12-141-4/+4
* Add a per-thread ucred reference for syscalls and synchronous traps fromJohn Baldwin2001-10-261-0/+5
* Fix ktrace enablement/disablement races that can result in a vnodeMatthew Dillon2001-10-241-3/+4
* Change the kernel's ucred API as follows:John Baldwin2001-10-111-2/+1
* KSE Milestone 2Julian Elischer2001-09-121-40/+87
* Rip some well duplicated code out of cpu_wait() and cpu_exit() and movePeter Wemm2001-09-101-4/+4
* Pushdown Giant for acct(), kqueue(), kevent(), execve(), fork(),Matthew Dillon2001-09-011-4/+15
* Get rid of useless bcopy (the next statement was equivalent)Guido van Rooij2001-07-091-2/+0
* With Alfred's permission, remove vm_mtx in favor of a fine-grained approachMatthew Dillon2001-07-041-3/+2
* Remove the p_spinlocks spin lock count that was obsoleted by theJohn Baldwin2001-06-301-1/+0
* Rename nextpid to lastpid and externalize it.Dag-Erling Smørgrav2001-06-111-7/+7
* o Merge contents of struct pcred into struct ucred. Specifically, add theRobert Watson2001-05-251-9/+3
* Introduce a global lock for the vm subsystem (vm_mtx).Alfred Perlstein2001-05-191-0/+2
* Properly copy the P_ALTSTACK flag in struct proc::p_flag to the childAkinori MUSHA2001-05-071-1/+1
* Convert the allproc and proctree locks from lockmgr locks to sx locks.John Baldwin2001-03-281-4/+4
* Rework the witness code to work with sx locks as well as mutexes.John Baldwin2001-03-281-2/+1
* Don't explicitly zero p_intr_nesting_level and p_aioinfo in fork.John Baldwin2001-03-281-2/+0
* Use mtx_intr_enable() on sched_lock to ensure child processes always startJohn Baldwin2001-03-281-2/+2
* Fix mtx_legal2block. The only time that it is bad to block on a mutex isJohn Baldwin2001-03-091-0/+4
* - Don't hold the proc lock across VREF and the fd* functions to avoid lockJohn Baldwin2001-03-071-4/+21
* - Lock the forklist with an sx lock.John Baldwin2001-03-071-14/+57
* Sigh. Try to get priorities sorted out. Don't bother trying toJake Burkholder2001-02-281-1/+0
* Initialize native priority to PRI_MAX. It was usually 0 which made aJake Burkholder2001-02-261-0/+1
* Quiet a warning with a uintptr_t cast.John Baldwin2001-02-221-1/+1
* o Move per-process jail pointer (p->pr_prison) to inside of the subjectRobert Watson2001-02-211-5/+0
* - Don't call clear_resched() in userret(), instead, clear the resched flagJohn Baldwin2001-02-201-0/+6
* o Export the nextpid variable via SYSCTL as kern.lastpid, decreasing byRobert Watson2001-02-121-0/+2
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-8/+8
* Fix fork_exit() to take a pointer to a function that returns void as itsJohn Baldwin2001-01-261-2/+2
* - Change fork_exit() to take a pointer to a trapframe as its 3rd argumentJohn Baldwin2001-01-241-2/+2
* - Catch up to proc flag changes.John Baldwin2001-01-241-4/+79
* Add mibs to hold the number of forks since boot. New mibs are:Hajimu UMEMOTO2001-01-231-0/+15
* Make intr_nesting_level per-process, rather than per-cpu. SetupJake Burkholder2001-01-211-0/+1
* Protect proc.p_pptr and proc.p_children/p_sibling with theJake Burkholder2000-12-231-0/+2
* - Change the allproc_lock to use a macro, ALLPROC_LOCK(how), insteadJake Burkholder2000-12-131-2/+2
* Whitespace. Fix indentation, align comments.Jake Burkholder2000-12-041-17/+17
* - Add a mutex to the proc structure p_mtx that will be used to lock accessesJohn Baldwin2000-12-031-0/+1