aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Improve style consistency of vfs_syscalls.c by converting the style usedRobert Watson2002-04-202-106/+164
* In sendfile(), use the vn_rdwr() helper function, rather than manuallyRobert Watson2002-04-191-13/+4
* Divorce proc0 and proc1 credentials earlier; while this isn't technicallyRobert Watson2002-04-191-0/+7
* suser is Giant safe, so optimize a pointless case.Poul-Henning Kamp2002-04-191-3/+3
* just merged cosmetic changes from KAME to ease sync between KAME and FreeBSD.SUZUKI Shinsuke2002-04-191-1/+1
* When exec'ing a set[ug]id program, make sure that the stdio file descriptorsJacques Vidrine2002-04-192-0/+69
* Avoid calling malloc() or free() while holding theMaxime Henrion2002-04-171-13/+26
* Rework the kernel environment subsystem. We now convert the staticMaxime Henrion2002-04-177-84/+384
* Add an entry for the kenv(2) syscall (code to follow).Maxime Henrion2002-04-171-0/+2
* The recent NFS forced unmount improvements introduced a side-effectIan Dowse2002-04-172-4/+18
* Lock proctree_lock instead of pgrpsess_lock.John Baldwin2002-04-167-25/+25
* - Lock proctree_lock instead of pgrpsess_lock.John Baldwin2002-04-162-39/+42
* - Lock proctree_lock instead of pgrpsess_lock.John Baldwin2002-04-161-35/+20
* - Lock proctree_lock instead of pgrpsess_lock.John Baldwin2002-04-161-7/+7
* - Merge the pgrpsess_lock and proctree_lock sx locks into one proctree_lockJohn Baldwin2002-04-162-15/+10
* Remove two debug printfs which should never have been committed.Poul-Henning Kamp2002-04-151-4/+0
* You have to cast int64_t's to long long if you printf them with %lld.John Baldwin2002-04-151-2/+2
* Improve the implementation of adjtime(2).Poul-Henning Kamp2002-04-154-93/+78
* Take the "tickadj" element out of struct clockinfo. Our adjtime(2)Poul-Henning Kamp2002-04-151-1/+0
* In the ntp_adjtime(2) syscall, return our actual estimate of unappliedPoul-Henning Kamp2002-04-151-2/+2
* Finish adding support code for sysctl kern.mprof. This dumps some mallocJeff Roberson2002-04-151-11/+68
* Remove malloc_type's ks_limit.Jeff Roberson2002-04-151-84/+135
* Don't allow one to trace an ancestor when already traced.Alfred Perlstein2002-04-141-1/+14
* Use VOP_GETVOBJECT instead of accessing the member directly. This fixedJeff Roberson2002-04-141-1/+1
* RegenAlan Cox2002-04-142-3/+3
* Remove the requirement that Giant be held around sigreturn().Alan Cox2002-04-141-1/+1
* o Use aiocblist::fd_file in the AIO threads rather than recomputingAlan Cox2002-04-141-45/+3
* - Change killpg1()'s first argument to be a thread instead of a process soJohn Baldwin2002-04-131-36/+22
* - Change donice() to take a thread as the first argument instead of aJohn Baldwin2002-04-131-37/+40
* - Change the algorithms of the syscalls to modify process credentials toJohn Baldwin2002-04-131-83/+137
* - Change the first argument of ktrcanset(), ktrsetchildren(), and ktrops()John Baldwin2002-04-131-32/+57
* Use pmap_extract() instead of pmap_kextract() to retrieve the physicalThomas Moestl2002-04-131-1/+2
* Use the correct macros for F_SETFD/F_GETFD instead of magic numbers.Jeroen Ruigrok van der Werven2002-04-131-2/+3
* Back out the last revision - it does not work correctly when one ofThomas Moestl2002-04-131-17/+6
* Rework ptrace(2) to be more locking friendly. We do any needed copyin()'sJohn Baldwin2002-04-121-86/+114
* Do not use pmap_kextract() to find out the physical address of a userThomas Moestl2002-04-121-6/+17
* Fix corner case where m_len was not being initialized.Jeffrey Hsu2002-04-121-1/+3
* - Set the base priority of an ithread that has no handlers when we set itsJohn Baldwin2002-04-111-3/+5
* RegenAlan Cox2002-04-112-3/+3
* Remove the requirement that Giant be held around osigreturn(). All platform-Alan Cox2002-04-111-1/+1
* - Change settime() to take a thread as its first argument instead of a procJohn Baldwin2002-04-101-36/+27
* Display the recursion count in the lock_instance in the show locksJohn Baldwin2002-04-101-1/+2
* Cosmetic fixup in output of lock types in show locks output.John Baldwin2002-04-101-1/+1
* In linker_load_module(), check that rootdev != NODEV before callingBrian Somers2002-04-101-3/+5
* Change linker_reference_module() so that it's passed a structBrian Somers2002-04-101-3/+14
* - Change fill_kinfo_proc() to require that the process is locked when itJohn Baldwin2002-04-093-14/+24
* Whitespace changes to wrap long lines.John Baldwin2002-04-091-4/+8
* We don't need Giant to read the pgrp ID since the proc lock has protectedJohn Baldwin2002-04-091-5/+3
* - Remove an early KSE diagnostic panic. The thread pointer here is alwaysJohn Baldwin2002-04-091-4/+2
* Don't lock the ithread lock in ithread_create(). The ithread isn't on anyJohn Baldwin2002-04-091-2/+0