summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_sysctl.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Committed the wrong version (an earlier try) of the KERN_FILE2 vsguenther2012-06-021-3/+3
* Oops, when we moved _POSIX_SAVED_IDS from sys/unistd.h to unistd.h, itmatthew2012-05-301-5/+1
* Change the KERN_FILE_BYPID and KERN_FILE_BYUID modes of the KERN_FILE2guenther2012-05-251-5/+11
* Oops, previous change had some unrelated changes that shouldn't have beenguenther2012-05-021-11/+5
* Eliminate the f_usecount ref count in struct file; instead of sleepingguenther2012-05-011-6/+12
* Make it optional for kvm_getprocs() (and related sysctl) to returnpirofti2012-04-171-1/+9
* Add per thread accounting, mainly for usage & friends.pirofti2012-04-121-4/+16
* Make the KERN_NPROCS and KERN_MAXPROC sysctl()s and the RLIMIT_NPROC rlimitguenther2012-04-101-3/+7
* The kinfo_file2 structure's f_wbytes member was being filled with theguenther2012-03-281-2/+2
* Make rusage totals, itimers, and profile settings per-process insteadguenther2012-03-231-3/+3
* 0 is a valid uid for files sysctl, don't skip it. ok guenthertedu2012-03-131-2/+2
* Add PS_EXITING to better differentiate between the process exiting andguenther2012-03-101-3/+5
* First steps for making ptrace work with rthreads:guenther2012-02-201-2/+2
* Enable rthreads by defaultguenther2012-02-151-2/+2
* Make the KERN_FILE2 sysctl() report ENOMEM as documented in sysctl(3).guenther2012-01-211-1/+3
* Add rtable id and thread id to struct kinfo_proc (and fix process id)guenther2012-01-071-2/+11
* Handle rthreads consistently in ktrace by moving the flags and vnode intoguenther2011-12-141-5/+5
* Add new KERN_PROC_CWD sysctl to get the current working directory of a process.nicm2011-12-091-1/+67
* Do not use the `hh' modifier in printf format strings, as the kernel printfmiod2011-09-181-3/+3
* Make sysctl__string() handle the truncated output case via twoguenther2011-09-181-8/+6
* Recommit the reverted sigacts change now that the NFS use-after-freeguenther2011-07-051-2/+3
* Make KERN_FILE and KERN_FILE2 behavior consistent: when the caller doesn'tguenther2011-06-271-3/+5
* machdep.kbdreset enables a shutdown by Ctrl-Alt-Del on amd64 andnaddy2011-06-241-1/+8
* Don't copy the first octet of the source IPv6 address where the destinationsthen2011-06-091-2/+2
* Revert the sigacts diff: NFS can apparently retain pointers to processesguenther2011-04-181-3/+2
* Correct the sharing of the signal handling state: stuff that shouldguenther2011-04-151-2/+3
* sysctl kern.pool_debug=0 will disable POOL_DEBUG on the fly (still defaultsderaadt2011-04-041-1/+11
* Constrain the buffer cache to use only the dma reachable region of memory.beck2011-04-021-2/+4
* Replace the old, broken KERN_PROC ABI and its matching functionsguenther2011-03-121-125/+34
* allow users to enable access to the /dev/crypto, but keep it turned offmikeb2011-02-161-7/+1
* disable access to the crypto(4) device from userland; ok deraadtmikeb2010-12-141-1/+7
* Make KERN_CPTIME return an avarage number of ticks across all CPUsmikeb2010-11-191-1/+4
* export the network livelock counter. part of a diff i committed thedlg2010-11-021-1/+4
* Include the disklabel UID in hw.disknames.jsing2010-09-231-5/+21
* Introduce an MI kern.consdev sysctl that will replace the MDkettenis2010-08-191-1/+10
* Correct the links between threads, processes, pgrps, and sessions,guenther2010-07-261-22/+26
* Rollback the allproclk and fileheadlk addition. When grabbing anguenther2010-07-191-26/+5
* A process on the zombie list can have a NULL p_pgrp if it sleeps whenguenther2010-07-101-1/+6
* Since fill_eproc() is no longer called from coredump(), it can be droppedguenther2010-07-021-5/+1
* Add getsockopt SOL_SOCKET SO_PEERCRED support. This behaves similar toderaadt2010-06-301-1/+2
* Fail instead of lying if a process asks sysctl()'s KERN_PROC2 orguenther2010-06-291-3/+4
* Eliminate RTHREADS kernel option in favor of a sysctl. The actual statustedu2010-06-291-1/+6
* Skip exiting procesess in sysctl_file2(). As processes in exit1()thib2010-06-191-7/+7
* Use intermediate vaddr_t cast when casting a pointer to off_t. Preventskettenis2010-05-021-2/+2
* Get rid of MAXSENSORDEVICES. Gaps in sensordev lists are now handledderaadt2010-04-201-7/+7
* Add a rwlock around the filehead and allproc lists, mainly to protecttedu2010-03-241-5/+26
* Reimplement kvm_getproc2()'s support for reading crash dumps andguenther2010-01-101-129/+9
* Rototill system V message queues.blambert2009-08-091-19/+2
* Dynamic buffer cache support - a re-commit of what was backed outbeck2009-08-021-4/+13
* Handle the case where so_pcb is NULL.millert2009-07-211-1/+3