aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_proc.c
Commit message (Expand)AuthorAgeFilesLines
* Use a loop instead of a goto in sysctl_kern_proc_kstack().Mark Johnston2016-04-171-6/+3
* The struct thread td_estcpu member is only used by the 4BSD scheduler.Konstantin Belousov2016-04-171-2/+2
* kern: for pointers replace 0 with NULL.Pedro F. Giffuni2016-04-151-1/+1
* Rename P_KTHREAD struct proc p_flag to P_KPROC.Konstantin Belousov2016-02-091-2/+1
* Remove the assert which outlived its usefulness, and, by default,Konstantin Belousov2016-02-081-12/+7
* session: avoid proctree lock on proc exit when possibleMateusz Guzik2016-01-201-0/+73
* session: tidy up fixjobcMateusz Guzik2016-01-201-13/+7
* proc: fix a race which could result in dereference of bad p_pgrp pointer on forkMateusz Guzik2015-12-181-0/+1
* Fix style issues around existing SDT probes.Mark Johnston2015-12-161-16/+13
* Add helper functions proc_readmem() and proc_writemem().Mark Johnston2015-12-071-60/+27
* Export various helper variables describing the layout and size ofJohn Baldwin2015-11-121-0/+15
* Fix core corruption caused by race in note_procstat_vmmapConrad Meyer2015-10-061-5/+18
* save some bytes by using more concise SDT_PROBE<n> instead of SDT_PROBEAndriy Gapon2015-09-281-6/+6
* When a process group leader exits, all of the processes in the group areJohn Baldwin2015-09-161-1/+1
* Add stack_save_td_running(), a function to trace the kernel stack of aMark Johnston2015-09-111-4/+7
* The si_status field of the siginfo_t, provided by the waitid(2) andKonstantin Belousov2015-07-181-3/+4
* Implement lockless resource limits.Mateusz Guzik2015-06-101-1/+1
* Provide vnode in memory map info for files on tmpfsEric van Gyzen2015-06-021-2/+18
* Make setproctitle(3) work in Capsicum capability mode. This makesEdward Tomasz Napierala2015-04-271-1/+1
* The sysctls that return process argv and envv return binary data, so clearIan Lepore2015-03-221-0/+2
* proc: use MTX_NEW flag in proc_initMateusz Guzik2015-03-211-6/+5
* Set the SBUF_INCLUDENUL flag in sbuf_new_for_sysctl() so that sysctlIan Lepore2015-03-141-0/+3
* Fix gcc build.Konstantin Belousov2014-12-141-1/+2
* Add facility to stop all userspace processes. The supposed use of theKonstantin Belousov2014-12-131-0/+138
* Disable recursion for the process spinlock.Konstantin Belousov2014-12-011-1/+1
* The process spin lock currently has the following distinct uses:Konstantin Belousov2014-11-261-4/+7
* Update the ULE scheduler + thread and kinfo structs to use int for cpuidAdrian Chadd2014-10-181-0/+24
* On error, sbuf_bcat() returns -1. Some callers returned this -1 toKonstantin Belousov2014-10-051-8/+14
* Plug a hypothetical use after free in sysctl kern.proc.groups.Mateusz Guzik2014-09-041-2/+2
* Fix dereference after NULL check.Gleb Smirnoff2014-09-031-3/+4
* Return real parent pid in kinfo (used by e.g. ps)Mateusz Guzik2014-08-281-4/+13
* Correct the problems with the ptrace(2) making the debuggee an orphan.Konstantin Belousov2014-08-071-3/+4
* Simplify the expression, by removing redundand calculation.Konstantin Belousov2014-07-291-1/+1
* Followup to r268466.Konstantin Belousov2014-07-151-28/+62
* Change the calculation of the kinfo_vmentry field kve_private_residentKonstantin Belousov2014-07-151-1/+1
* Unconditionally initialize addr to handle the case of changed mapKonstantin Belousov2014-07-101-0/+1
* Current code in sysctl proc.vmmap, which intent is to calculate theKonstantin Belousov2014-07-091-34/+51
* Expose OBJT_MGTDEVICE VM objects used for GEM/TTM with drm2 as anJohn Baldwin2014-02-111-0/+3
* Add an kinfo sysctl to retrieve signal trampoline location for theKonstantin Belousov2013-11-261-0/+58
* dtrace sdt: remove the ugly sname parameter of SDT_PROBE_DEFINEAndriy Gapon2013-11-261-6/+6
* - For kernel compiled only with KDTRACE_HOOKS and not any lock debuggingAttilio Rao2013-11-251-1/+0
* Extend the support for exempting processes from being killed when swap isJohn Baldwin2013-09-191-0/+2
* Add the ability to display the default FIB number for a process to theWill Andrews2013-08-261-0/+2
* Specify SDT probe argument types in the probe definition itself rather thanMark Johnston2013-08-151-27/+12
* Similarly to proc_getargv() and proc_getenvv(), export proc_getauxv()Mikolaj Golub2013-04-141-18/+29
* Re-factor the code to provide kern_proc_filedesc_out(), kern_proc_out(),Mikolaj Golub2013-04-141-52/+86
* Switch some "low-hanging fruit" to acquire read lock on vmobjectsAttilio Rao2013-04-081-10/+10
* Switch the vm_object mutex to be a rwlock. This will enable in theAttilio Rao2013-03-091-10/+11
* Look for zombie process only if we were given process id.Pawel Jakub Dawidek2012-11-251-5/+6
* In pget(9), if PGET_NOTWEXIT flag is not specified, also search theKonstantin Belousov2012-11-161-21/+46