summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_proc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Split `p_priority' into `p_runpri' and `p_slppri'.mpi2020-01-301-2/+2
* Add a mechanism for managing asynchronous IO signal registrations.visa2018-11-121-1/+3
* Use atomic operations for updating cred structure reference countsvisa2018-06-211-2/+2
* Make sure that programs violating a pledge(2) promise or some memorympi2018-03-271-1/+2
* Serialize access to UID data with a rwlock.mpi2018-02-261-4/+22
* Introduce enternewpgrp() & enterthispgrp(), from FreeBSD via guenther@.mpi2018-02-201-55/+44
* Move cleanup job control bits to their own function.mpi2018-02-101-1/+44
* Delete unnecessary <sys/file.h> includesguenther2017-12-301-2/+1
* Change __mp_lock_held() to work with an arbitrary CPU info structure andmpi2017-12-041-4/+12
* New ddb(4) command: kill.mpi2017-09-291-1/+23
* Update usage for ps/w to match previous commitguenther2017-02-041-2/+2
* Display process group in "ps /w" since they got removed from "ps /n".mpi2017-01-241-9/+11
* Display the thread ID (TID) rather than the process group ID (PGRP)mpi2017-01-241-9/+14
* Rename pfind(9) into tfind(9) to reflect that it deals with threads.mpi2017-01-241-2/+2
* p_comm is the process's command and isn't per thread, so move it fromguenther2017-01-211-6/+6
* Split PID from TID, giving processes a PID unrelated to the TID of theirguenther2016-11-071-14/+17
* all pools have their ipl set via pool_setipl, so fold it into pool_init.dlg2016-09-151-19/+13
* add a concept of 'verified auth' to sessions. When set via ioctl,tedu2016-09-021-1/+11
* pool_setipldlg2016-08-251-1/+7
* Repair kill(2) on zombie processes.jca2016-06-271-1/+15
* repair documentation for inferior(); from Michal Mazurekderaadt2016-03-041-2/+2
* Add ddb ps/o, displaying just the non-idle on-proc threadsguenther2015-09-111-8/+30
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* start retiring the nointr allocator. specify PR_WAITOK as a flag as atedu2014-12-191-13/+13
* convert bcopy to memcpy. ok millerttedu2014-12-101-2/+2
* pass size argument to free()deraadt2014-11-031-2/+2
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* Track whether a process is a zombie or not yet fully built via flagsguenther2014-07-041-2/+2
* Move from struct proc to process the reference-count-holding pointersguenther2014-05-151-4/+3
* Eliminates struct pcred by moving the real and saved ugids intoguenther2014-03-301-5/+2
* Move p_emul and p_sigcode from proc to process.guenther2014-03-261-2/+2
* Threads can't be zombies, only processes, so change zombproc to zombprocess,guenther2014-01-201-38/+41
* format string fix: p_*ticks are u_intsf2013-10-021-2/+2
* Stop merging the per-thread and per-process flags when reportingguenther2013-09-221-2/+2
* The ps flags are split between thread and process. It is usefulbluhm2013-08-121-4/+6
* Uncomment kprintf format attributes for sys/kernsyl2013-08-081-2/+2
* Comment out recently added __attribute__((__format__(__kprintf__))) annotationsmiod2013-02-171-2/+2
* Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions andmiod2013-02-091-2/+3
* Make the KERN_NPROCS and KERN_MAXPROC sysctl()s and the RLIMIT_NPROC rlimitguenther2012-04-101-4/+4
* %, is not a valid format specifiermiod2011-09-181-2/+2
* The scheduling 'nice' value is per-process, not per-thread, so move itguenther2011-03-071-2/+2
* Correct the links between threads, processes, pgrps, and sessions,guenther2010-07-261-64/+74
* Rollback the allproclk and fileheadlk addition. When grabbing anguenther2010-07-191-4/+1
* A process on the zombie list can have a NULL p_pgrp if it sleeps whenguenther2010-07-101-2/+3
* Add a rwlock around the filehead and allproc lists, mainly to protecttedu2010-03-241-1/+4
* Make sure the process tree is is loop-free by forbidding ptrace()guenther2010-01-281-5/+5
* Misplaced comment.art2009-04-151-5/+5
* change all callers of enterpgrp() to pre-allocate a pgrp or session ifderaadt2008-11-011-17/+30
* accidental commit ... backoutderaadt2008-10-311-39/+19
* kern_sysctl.cderaadt2008-10-311-19/+39