aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
Commit message (Expand)AuthorAgeFilesLines
* sys/kern: quiet -Wwrite-stringsRyan Libby2020-02-231-1/+1
* Do not read sigfastblock word on syscall entry.Konstantin Belousov2020-02-201-32/+118
* Add a way to manage thread signal mask using shared word, instead of syscall.Konstantin Belousov2020-02-091-23/+175
* cache: replace kern___getcwd with vn_getcwdMateusz Guzik2020-02-011-4/+6
* Remove duplicated empty lines from kern/*.cMateusz Guzik2020-01-301-3/+0
* vfs: drop the mostly unused flags argument from VOP_UNLOCKMateusz Guzik2020-01-031-4/+4
* schedlock 1/4Jeff Roberson2019-12-151-24/+27
* Add kern_kill() and use it in Linuxulator. It's just a cleanup,Edward Tomasz Napierala2019-12-131-14/+21
* Only return EPERM from kill(-pid) when no process was signalled.Konstantin Belousov2019-12-071-34/+44
* Requested and tested by: kevansKonstantin Belousov2019-11-271-0/+26
* 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