aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/procfs
Commit message (Expand)AuthorAgeFilesLines
* Don't export major,minor, instead export tty name.Poul-Henning Kamp2005-03-151-3/+3
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-068-8/+8
* Fix unvalidated pointer dereference. This is FreeBSD-SA-04:17.procfs.Colin Percival2004-12-011-1/+13
* Rework how we store process times in the kernel such that we always storeJohn Baldwin2004-10-051-3/+2
* Don't PHOLD() the target process in procfs, since this is already doneDavid Schultz2004-10-013-6/+3
* Remove advertising clause from University of California Regent'sWarner Losh2004-04-0710-41/+1
* Remove ps_argsopen from this check, because of two reasons:Pawel Jakub Dawidek2004-04-011-1/+1
* Locking for the per-process resource limits structure.John Baldwin2004-02-041-4/+18
* Lock p->p_textvp before calling vn_fullpath() on it. Note theRobert Watson2004-01-071-0/+2
* Minor whitespace and style issues.Dag-Erling Smørgrav2003-12-077-21/+16
* Remove debug printf().Maxime Henrion2003-10-191-1/+0
* Introduce a uiomove_frombuf helper routine that handles computing andJacques Vidrine2003-10-023-45/+9
* Add a new column to the procfs map to hold the name of the mappedRobert Watson2003-09-291-2/+16
* Add p_candebug() check to access a process map file in procfs; limitRobert Watson2003-08-141-0/+6
* Rename P_THREADED to P_SA. P_SA means a process is using schedulerDavid Xu2003-06-151-1/+1
* Clean up proc locking in procfs: make sure the proc lock is held beforeRobert Watson2003-05-053-5/+12
* Instead of recording the Unix time in a process when it starts, record theDag-Erling Smørgrav2003-05-011-4/+6
* - Always call faultin() in _PHOLD() if PS_INMEM is clear. This closes aJohn Baldwin2003-04-221-2/+0
* - Use a local variable to close a minor race when determining if the wmesgJohn Baldwin2003-04-171-9/+15
* Protect p_flag with the proc lock. The sched_lock is not needed to turnJohn Baldwin2003-04-171-2/+2
* - P_SHOULDSTOP just needs proc lock now, so don't acquire sched_lock unlessJohn Baldwin2003-04-171-6/+4
* Add a proc lock assertion and move another assertion up to the top of theJohn Baldwin2003-04-171-2/+4
* wakeup(9) and msleep(9) take void * arguments, not caddr_t.Dag-Erling Smørgrav2003-03-021-3/+3
* Change the process flags P_KSES to be P_THREADED.Julian Elischer2003-02-271-1/+1
* Slightly change the semantics of vnode labels for MAC: rather thanRobert Watson2002-10-263-72/+0
* Remove even more '&' from pointers to functions.Poul-Henning Kamp2002-10-201-26/+26
* Back our kernel support for reliable signal queues.Juli Mallett2002-10-011-2/+1
* First half of implementation of ksiginfo, signal queues, and such. ThisJuli Mallett2002-09-301-1/+2
* Use the fields in the sysentvec and in the vm map header in place of theJake Burkholder2002-09-211-1/+3
* Completely redo thread states.Julian Elischer2002-09-112-3/+2
* s/SGNL/SIG/David Xu2002-09-052-3/+3
* Fixed 64bit big endian bugs relating to abuse of ioctl argument passing.Jake Burkholder2002-08-151-4/+4
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-08-013-0/+72
* Create a new thread state to describe threads that would be ready to runJulian Elischer2002-07-291-0/+2
* Part 1 of KSE-IIIJulian Elischer2002-06-295-12/+15
* Change p_can{debug,see,sched,signal}()'s first argument to be a threadJohn Baldwin2002-05-197-8/+10
* Include <sys/systm.h> for (at least) the definition of atomic functionsBruce Evans2002-04-211-0/+1
* Spelling fix for comment.Robert Watson2002-04-201-1/+1
* - Change procfs_control()'s first argument to be a thread pointer insteadJohn Baldwin2002-04-131-47/+32
* Lock the target process for p_candebug().John Baldwin2002-04-131-3/+4
* Lock the target process in procfs_doproc*regs() for p_candebug and whileJohn Baldwin2002-04-133-9/+23
* - p_cansee() needs the target process locked.John Baldwin2002-04-131-18/+17
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-1/+1
* Protect proc struct (p_args and p_comm) when doing procfs IO that pullsAlfred Perlstein2002-03-291-11/+17
* Remove __P.Alfred Perlstein2002-03-191-1/+1
* Lock struct pgrp, session and sigio.Seigo Tanimura2002-02-232-2/+8
* Paranoia: if the process is setugid, set all sensitive files mode 0.Dag-Erling Smørgrav2002-02-181-1/+3
* FIxed the following style bugs:Bruce Evans2002-02-162-10/+16
* FIxed the following style bugs:Bruce Evans2002-02-163-11/+21
* Fixed missing PHOLD()/PRELE().Bruce Evans2002-02-161-0/+2