aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
Commit message (Expand)AuthorAgeFilesLines
* 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-5/+0
* 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
* Fix siginfo_t.si_status for wait6/waitid/SIGCHLD.Jilles Tjoelker2013-11-171-8/+11
* Change the cap_rights_t type from uint64_t to a structure that we can extendPawel Jakub Dawidek2013-09-051-1/+3
* Specify SDT probe argument types in the probe definition itself rather thanMark Johnston2013-08-151-11/+6
* Remove duplicate assertion from tdsendsignal.Mateusz Guzik2013-07-221-3/+1
* Fix memory leak in coredump().Gleb Smirnoff2013-04-051-0/+1
* Tweak some comments.John Baldwin2013-03-181-4/+4
* Partially revert r195702. Deferring stops is now implemented via a set ofJohn Baldwin2013-03-181-12/+6
* Further refine the handling of stop signals in the NFS client. TheJohn Baldwin2013-02-211-8/+14
* Add break to the default case.Pawel Jakub Dawidek2013-02-171-0/+1
* When vforked child is traced, the debugging events are not generatedKonstantin Belousov2013-02-071-1/+1
* Rework the handling of stop signals in the NFS client. The changes inJohn Baldwin2013-02-061-11/+43
* Replace expand_name() function with corefile_open() function, which notPawel Jakub Dawidek2012-12-191-54/+35
* Use correct file permissions when looking for available core file ifPawel Jakub Dawidek2012-12-191-1/+1
* The 'flags' argument can be modified in vn_open_cred(), so we need toPawel Jakub Dawidek2012-12-191-1/+1
* Do not audit paths we try when kern.corefile contains %I.Pawel Jakub Dawidek2012-12-191-1/+2
* Style cleanups.Pawel Jakub Dawidek2012-12-191-50/+48
* The expand_name() function isn't called with the process lock held anymore,Pawel Jakub Dawidek2012-12-191-14/+2
* Minor style tweaks.Pawel Jakub Dawidek2012-12-171-6/+5
* Better variables naming in expand_name() to be more consistent with coredump().Pawel Jakub Dawidek2012-12-171-16/+16
* Move expand_name() after process lock is released.Pawel Jakub Dawidek2012-12-161-7/+4
* Don't add audit record when coredumps are disabled or name cannot be expanded.Pawel Jakub Dawidek2012-12-161-9/+0
* Make the check easier to read.Pawel Jakub Dawidek2012-12-161-2/+1
* Use 'cred' variable.Pawel Jakub Dawidek2012-12-161-2/+1
* Add kern.capmode_coredump sysctl/tunable to allow processes in capability modePawel Jakub Dawidek2012-11-271-2/+13
* Allow to use kill(2) in capability mode, but process can send a signal onlyPawel Jakub Dawidek2012-11-271-0/+8
* Allow to modify kern.sugid_coredump and kern.corefile from loader.conf.Pawel Jakub Dawidek2012-11-271-0/+2
* More style fixes.Pawel Jakub Dawidek2012-11-271-4/+4
* Style fixes (mostly whitespaces).Pawel Jakub Dawidek2012-11-271-35/+39
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-9/+2
* Correct the killpg(2) return values:Eitan Adler2012-10-221-6/+14
* Colin acked the wrong diff originally. fixed version coming soon.Eitan Adler2012-10-221-15/+6
* Correct the killpg(2) return values:Eitan Adler2012-10-221-6/+15
* Ignore stop and continue signals sent to an exiting process. Stop signalsJohn Baldwin2012-09-131-2/+5
* Deliver SIGSYS to the guilty thread, not to the process.Konstantin Belousov2012-08-181-1/+1
* Always clear p_xthread if current thread no longer needs it, in theory, ifDavid Xu2012-07-101-2/+3
* Add thread-private flag to indicate that error value is already placedKonstantin Belousov2012-04-121-0/+2
* Remove unused and wrong SA_PROC internal signal property.Jilles Tjoelker2012-04-091-23/+22
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+2
* Fix arguments list for proc:::signal-discard DTrace probe.Sergey Kandaurov2011-10-281-1/+1
* The sigwait(3) function shall not return EINTR, according to theKonstantin Belousov2011-10-011-0/+2
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-17/+17
* Add experimental support for process descriptorsJonathan Anderson2011-08-181-0/+31
* Fix support for RACCT_CORE by merging forgotten file.Edward Tomasz Napierala2011-05-261-2/+4
* ktrace: Log the code for all signals (PSIG events).Jilles Tjoelker2011-04-171-2/+2
* Fix several places to ignore processes that are not yet fully constructed.John Baldwin2011-04-061-2/+4
* Small style fix.John Baldwin2011-03-231-1/+1