aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
Commit message (Expand)AuthorAgeFilesLines
* rfork(2): add RFSPAWN flagKyle Evans2019-09-251-6/+18
* Only enable COMPAT_43 changes for syscalls ABI for a.out processes.Konstantin Belousov2019-08-111-1/+1
* Avoid relying on header pollution from sys/refcount.h.Mark Johnston2019-07-291-0/+1
* Adds signal number format to kern.corefileEric van Gyzen2019-07-161-2/+5
* Switch to check for effective user id in r349320, and disable dumpingKonstantin Belousov2019-06-231-5/+13
* coredump: avoid writing to core files not owned by the real user.Konstantin Belousov2019-06-231-2/+3
* Do not go into sleep in sleepq_catch_signals() when SIGSTOP fromKonstantin Belousov2019-05-291-1/+9
* Remove p_code from struct proc.John Baldwin2019-04-251-2/+0
* Remove unneeded NULL check for td_ucredKristof Provost2019-01-041-2/+2
* Simplify jail ID printing on process exitKristof Provost2018-12-291-10/+3
* Make kernel print jail ID when logging a process exitKristof Provost2018-12-291-4/+13
* Don't report stale signal information for non-signal events in ptrace_lwpinfo.John Baldwin2018-12-101-0/+2
* Improve sigonstack().Konstantin Belousov2018-11-271-8/+13
* Swap in WKILLED processes.Konstantin Belousov2018-08-041-1/+18
* Make timespecadd(3) and friends publicAlan Somers2018-07-301-4/+2
* Extend amount of possible coredumps from 10 to 100000 when using index format.Mariusz Zaborski2018-07-151-13/+23
* Add description to debug.ncores sysctl.Mariusz Zaborski2018-07-041-1/+2
* core(5): overwrite the oldest core dumpMariusz Zaborski2018-07-011-34/+104
* Fix devctl generation for core files.Warner Losh2018-06-271-39/+28
* fork: avoid endless wait with PTRACE_FORK and RFSTOPPED.Konstantin Belousov2018-06-211-1/+0
* signotify: don't create a stack local that isn't used on non-debug buildsMatt Macy2018-05-191-4/+1
* Eliminate the overhead of gratuitous repeated reinitialization of cap_rightsMatt Macy2018-05-091-3/+1
* Move most of the contents of opt_compat.h to opt_global.h.Brooks Davis2018-04-061-1/+0
* Fix several leaks of kernel stack data through paddings.Konstantin Belousov2018-03-271-1/+1
* Make killpg1 perform process validity checks without proc lock held.Mateusz Guzik2018-02-201-2/+1
* Add support for zstd-compressed user and kernel core dumps.Mark Johnston2018-02-131-3/+8
* Generalize the gzio API.Mark Johnston2018-01-081-14/+26
* sys: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
* Use pfind_any in linux_rt_sigqueueinfo and kern_sigqueueMateusz Guzik2017-11-111-4/+2
* Add pfind_anyMateusz Guzik2017-11-111-4/+2
* Re-evaluate thread' signal mask after ptracestop().Konstantin Belousov2017-10-161-7/+24
* Improve assertion that an ignored or blocked signal is not delivered.Konstantin Belousov2017-10-161-2/+4
* Style.Konstantin Belousov2017-10-161-7/+8
* Make it possible to request nosys logging to console.Konstantin Belousov2017-07-271-1/+6
* Print unimplemented syscall number to the ctty on SIGSYS, if enabledKonstantin Belousov2017-06-121-1/+10
* Remove register keyword from sys/ and ANSIfy prototypesEd Maste2017-05-171-3/+3
* Do not wake up sleeping thread in reschedule_signals() if the signalKonstantin Belousov2017-05-121-1/+3
* Let ptracestop() suspend threads sleeping in an SBDRY section.Mark Johnston2017-05-111-2/+2
* Provide a freebsd32 implementation of sigqueue()Brooks Davis2017-05-051-8/+18
* Add support for capturing 'struct ptrace_lwpinfo' for signalsTycho Nightingale2017-03-301-5/+23
* When clearing altsigstack settings on exec, do it to the right thread.Konstantin Belousov2017-03-171-1/+2
* Don't clear p_ptevents on normal SIGKILL deliveryEric Badger2017-03-161-4/+2
* don't stop in issignal() if P_SINGLE_EXIT is setEric Badger2017-03-071-6/+7
* kern_sig.c: ANSIfy and remove archaic register keywordEd Maste2017-03-021-67/+26
* Defer ptracestop() signals that cannot be delivered immediatelyEric Badger2017-02-201-92/+132
* Renumber license clauses in sys/kern to avoid skipping #3Ed Maste2016-09-151-1/+1
* Modernize the initalization of sigproptbl.Brooks Davis2016-09-061-33/+33
* Merge from CheriBSD:Brooks Davis2016-09-021-57/+58
* Correct a check for P2_PTRACE_FSTP in ptracestop().Mark Johnston2016-08-191-1/+1
* When a debugger attaches to the process, SIGSTOP is sent to theKonstantin Belousov2016-07-281-9/+37