summaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
Commit message (Expand)AuthorAgeFilesLines
* MFC r197660:Konstantin Belousov2009-10-041-1/+1
* Add new msleep(9) flag PBDY that shall be specified together withKonstantin Belousov2009-07-141-10/+27
* Replace AUDIT_ARG() with variable argument macros with a set more moreRobert Watson2009-06-271-5/+5
* vn_open_cred() needs a non NULL ucred pointerPeter Holm2009-06-231-1/+1
* Add another flags argument to vn_open_cred. Use it to specify that someKonstantin Belousov2009-06-211-1/+2
* Remove VOP_LEASE and supporting functions. This hasn't been used sinceRobert Watson2009-04-101-1/+0
* Remove even more unneeded variable assignments.Ed Schouten2009-02-261-5/+1
* Revert rev 184216 and 184199, due to the way the thread_lock works,David Xu2008-11-051-1/+28
* Actually, for signal and thread suspension, extra process spin lock isDavid Xu2008-10-231-28/+1
* Move per-thread userland debugging flags into seperated field,David Xu2008-10-151-8/+4
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-281-2/+2
* If a thread that is swapped out is made runnable, then the setrunnable()John Baldwin2008-08-051-2/+10
* Add DTrace 'proc' provider probes using the Statically Defined TraceJohn Birrell2008-05-241-0/+22
* - Add a new td flag TDF_NEEDSUSPCHK that is set whenever a thread needsJeff Roberson2008-03-211-0/+1
* - Relax requirements for p_numthreads, p_threads, p_swtick, and p_nice fromJeff Roberson2008-03-191-33/+13
* Remove kernel support for M:N threading.Jeff Roberson2008-03-121-157/+0
* Use sbuf routines to construct core dump filenames rather than customRobert Watson2008-03-081-27/+22
* Unlock the process lock when expand_name() fails, or we may leak theRobert Watson2008-03-081-0/+1
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-3/+3
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* Be more exact with sigaction SA_SIGINFO handling.David E. O'Brien2007-12-181-2/+5
* Fix for the panic("vm_thread_new: kstack allocation failed") andKonstantin Belousov2007-11-051-1/+1
* Implement AUE_CORE, which adds process core dump support into the kernel.Christian S.J. Peron2007-10-261-6/+27
* Move where we audit the PID argument such that we unconditionallyChristian S.J. Peron2007-10-241-1/+1
* - Calling sched_nice() in tdsigwakeup() is no longer required by ULE andJeff Roberson2007-07-191-6/+2
* - Add a missing PROC_SUNLOCK() in tdsignal()Jeff Roberson2007-06-111-1/+3
* Initialized ets to zero. This is arguably a gcc bug in that ets is alwaysMatt Jacob2007-06-101-0/+2
* Commit 4/14 of sched_lock decomposition.Jeff Roberson2007-06-041-56/+66
* - Move rusage from being per-process in struct pstats to per-thread inJeff Roberson2007-06-011-2/+2
* Revert UF_OPENING workaround for CURRENT.Konstantin Belousov2007-05-311-1/+1
* Comment that tdsignal() may be entered from the debugger.Robert Watson2007-05-231-0/+4
* Rename the 'mtx_object', 'rw_object', and 'sx_object' members of mutexes,John Baldwin2007-03-211-2/+2
* Further system call comment cleanup:Robert Watson2007-03-051-12/+2
* Remove 'MPSAFE' annotations from the comments above most system calls: allRobert Watson2007-03-041-75/+8
* Give which signal caller has attempted to deliver when panicking.Xin LI2007-02-091-2/+2
* Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form.Xin LI2007-01-171-1/+1
* break loop early if we know that there are at least two signals.David Xu2006-12-251-1/+2
* Merge posix4/* into normal kernel hierarchy.Tom Rhodes2006-11-111-2/+1
* Make KSE a kernel option, turned on by default in all GENERICJohn Birrell2006-10-261-0/+60
* Use macro TAILQ_FOREACH_SAFE instead of expanding it.David Xu2006-10-221-6/+3
* Remove the check that prevented signals from being delivered to exitingJohn Baldwin2006-10-201-3/+1
* Move some declaration of 32-bit signal structures into fileDavid Xu2006-10-051-3/+1
* Remove various bits of conditional Alpha code and fixup a few comments.John Baldwin2006-05-121-5/+1
* Call vn_finished_write() before calling the coredump handler which willTor Egge2006-05-071-1/+1
* Don't try to kill embryonic processes in killpg1(). This preventsPaul Saab2006-04-211-2/+3
* - Conditionalize Giant around VFS operations for ALQ, ktrace, andJohn Baldwin2006-03-281-13/+12
* Remove _STOPEVENT call, it is already called in issignal, simplifyDavid Xu2006-03-091-6/+1
* Add signal set sq_kill to sigqueue structure, the member saves allDavid Xu2006-03-021-3/+23
* 1. Refine kern_sigtimedwait() to remove redundant code.David Xu2006-02-231-31/+43
* Code cleanup, simply compare with curproc.David Xu2006-02-231-2/+1