Age | Commit message (Expand) | Author |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2014-12-19 | start retiring the nointr allocator. specify PR_WAITOK as a flag as a | Ted Unangst |
2014-12-10 | convert bcopy to memcpy. ok millert | Ted Unangst |
2014-11-03 | pass size argument to free() | Theo de Raadt |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-04 | Track whether a process is a zombie or not yet fully built via flags | Philip Guenther |
2014-05-15 | Move from struct proc to process the reference-count-holding pointers | Philip Guenther |
2014-03-30 | Eliminates struct pcred by moving the real and saved ugids into | Philip Guenther |
2014-03-26 | Move p_emul and p_sigcode from proc to process. | Philip Guenther |
2014-01-20 | Threads can't be zombies, only processes, so change zombproc to zombprocess, | Philip Guenther |
2013-10-02 | format string fix: p_*ticks are u_int | Stefan Fritsch |
2013-09-22 | Stop merging the per-thread and per-process flags when reporting | Philip Guenther |
2013-08-12 | The ps flags are split between thread and process. It is useful | Alexander Bluhm |
2013-08-08 | Uncomment kprintf format attributes for sys/kern | Sylvestre Gallon |
2013-02-17 | Comment out recently added __attribute__((__format__(__kprintf__))) annotations | Miod Vallat |
2013-02-09 | Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions and | Miod Vallat |
2012-04-10 | Make the KERN_NPROCS and KERN_MAXPROC sysctl()s and the RLIMIT_NPROC rlimit | Philip Guenthe |
2011-09-18 | %, is not a valid format specifier | Miod Vallat |
2011-03-07 | The scheduling 'nice' value is per-process, not per-thread, so move it | Philip Guenthe |
2010-07-26 | Correct the links between threads, processes, pgrps, and sessions, | Philip Guenthe |
2010-07-19 | Rollback the allproclk and fileheadlk addition. When grabbing an | Philip Guenthe |
2010-07-10 | A process on the zombie list can have a NULL p_pgrp if it sleeps when | Philip Guenthe |
2010-03-24 | Add a rwlock around the filehead and allproc lists, mainly to protect | Ted Unangst |
2010-01-28 | Make sure the process tree is is loop-free by forbidding ptrace() | Philip Guenthe |
2009-04-15 | Misplaced comment. | Artur Grabowski |
2008-11-01 | change all callers of enterpgrp() to pre-allocate a pgrp or session if | Theo de Raadt |
2008-10-31 | accidental commit ... backout | Theo de Raadt |
2008-10-31 | kern_sysctl.c | Theo de Raadt |
2007-10-10 | Make context switching much more MI: | Artur Grabowski |
2007-09-07 | Use M_ZERO in a few more places to shave bytes from the kernel. | Artur Grabowski |
2007-08-04 | Allow ddb>ps to print the full name of the wait state. Things like | Chris Kuethe |
2007-04-03 | Start moving state that is shared among threads in a process into | Artur Grabowski |
2007-03-15 | Since p_flag is often manipulated in interrupts and without biglock | Artur Grabowski |
2005-12-22 | fix memory leak conditions in thrsleep and significantly simplify | Ted Unangst |
2005-12-04 | older gcc (like real C) does not let you declare local variables after | Theo de Raadt |
2005-12-03 | kernel support for threaded processes (rthreads). | Ted Unangst |
2005-11-28 | ansi/deregister. | Jonathan Gray |
2005-07-04 | oops, kernel free needs two args. thanks pedro | Ted Unangst |
2005-07-03 | malloc(M_WAITOK) implies sleeping, so we have to double check that | Ted Unangst |
2005-03-10 | split out uidinfo from kern_proc.c private, use it to store lock count, | Ted Unangst |
2004-12-26 | Use list and queue macros where applicable to make the code easier to read; | Miod Vallat |
2004-11-18 | handle SONPROC; ok aaron, deraadt, krw | Markus Friedl |
2004-10-04 | cacheing -> caching | Pedro Martelletto |
2004-07-25 | move db_show_all_procs to kern_proc.c, proc_printit goes in DDB too. | Ted Unangst |
2004-07-22 | SIMPLELOCK -> mutex for the lock around deadproc list. | Artur Grabowski |
2004-06-13 | debranch SMP, have fun | Niklas Hallqvist |
2004-01-29 | The Sxxx proc state defines start at 1, not 0. Also make the const | Todd C. Miller |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller |
2003-05-12 | Quoting Theo: Do not approve diffs when you're hungover. | Artur Grabowski |
2003-05-12 | use snprintf. ok mickey | Ted Unangst |