aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sys_procdesc.c
Commit message (Expand)AuthorAgeFilesLines
* procdesc: allow to collect status through wait(1) if process is tracedMariusz Zaborski2019-11-251-1/+0
* procdesc: fix the function nameMariusz Zaborski2019-08-051-1/+1
* procdesc: fix reparenting when the debugger is attachedMariusz Zaborski2019-08-051-1/+7
* proc: always store parent pid in p_oppidMateusz Guzik2018-11-161-1/+1
* Reparent a child of pdfork(2) to its reaper when the procdesc is closed.Mark Johnston2018-10-161-7/+8
* Eliminate the overhead of gratuitous repeated reinitialization of cap_rightsMatt Macy2018-05-091-3/+1
* Fix reaping on process fd close broken after r329449Mateusz Guzik2018-02-201-1/+0
* sys/kern: adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Hide the boottime and bootimebin globals, provide the getboottime(9)Konstantin Belousov2016-07-271-1/+2
* In process-descriptor close(2) and fstat(2), audit target processRobert Watson2016-07-101-1/+8
* Introduce the PD_CLOEXEC for pdfork(2).Mariusz Zaborski2016-06-081-0/+16
* The si_status field of the siginfo_t, provided by the waitid(2) andKonstantin Belousov2015-07-181-1/+1
* Add a new fo_fill_kinfo fileops method to add type-specific information toJohn Baldwin2014-09-221-0/+14
* Fix various issues with invalid file operations:John Baldwin2014-09-121-59/+6
* Implement kqueue(2) for procdesc(4).Ed Schouten2014-04-071-1/+65
* Fix a typo. The function name is pdfork; not pfork.Ed Schouten2014-04-061-1/+1
* Nit: fix locking of p->p_state in procdesc_close().Ed Schouten2014-04-061-31/+33
* Update kernel inclusions of capability.h to use capsicum.h instead; someRobert Watson2014-03-161-1/+1
* Make process descriptors standard part of the kernel. rwhod(8) alreadyPawel Jakub Dawidek2013-11-301-15/+0
* Change the cap_rights_t type from uint64_t to a structure that we can extendPawel Jakub Dawidek2013-09-051-5/+7
* Restore the previous sendfile(2) behaviour on the block devices.Konstantin Belousov2013-08-161-0/+1
* Add the wait6(2) system call. It takes POSIX waitid()-like processKonstantin Belousov2012-11-131-1/+1
* Fix panic in procdesc that can be triggered in the following scenario:Pawel Jakub Dawidek2012-09-011-2/+10
* Check proper flag (PDF_DAEMON, not PD_DAEMON) when deciding if the processPawel Jakub Dawidek2012-06-191-2/+2
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-3/+3
* Add experimental support for process descriptorsJonathan Anderson2011-08-181-0/+524