summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_proc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make context switching much more MI:art2007-10-101-3/+3
* Use M_ZERO in a few more places to shave bytes from the kernel.art2007-09-071-4/+2
* Allow ddb>ps to print the full name of the wait state. Things likeckuethe2007-08-041-3/+3
* Start moving state that is shared among threads in a process intoart2007-04-031-1/+4
* Since p_flag is often manipulated in interrupts and without biglockart2007-03-151-2/+2
* fix memory leak conditions in thrsleep and significantly simplifytedu2005-12-221-9/+1
* older gcc (like real C) does not let you declare local variables afterderaadt2005-12-041-4/+4
* kernel support for threaded processes (rthreads).tedu2005-12-031-1/+9
* ansi/deregister.jsg2005-11-281-38/+22
* oops, kernel free needs two args. thanks pedrotedu2005-07-041-5/+7
* malloc(M_WAITOK) implies sleeping, so we have to double check thattedu2005-07-031-7/+15
* split out uidinfo from kern_proc.c private, use it to store lock count,tedu2005-03-101-32/+22
* Use list and queue macros where applicable to make the code easier to read;miod2004-12-261-15/+13
* handle SONPROC; ok aaron, deraadt, krwmarkus2004-11-181-2/+2
* cacheing -> cachingpedro2004-10-041-2/+2
* move db_show_all_procs to kern_proc.c, proc_printit goes in DDB too.tedu2004-07-251-1/+90
* SIMPLELOCK -> mutex for the lock around deadproc list.art2004-07-221-14/+1
* debranch SMP, have funniklas2004-06-131-3/+3
* The Sxxx proc state defines start at 1, not 0. Also make the constmillert2004-01-291-5/+5
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
* Quoting Theo: Do not approve diffs when you're hungover.art2003-05-121-3/+3