aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
Commit message (Expand)AuthorAgeFilesLines
* MFC revision 1.350, move where we audit the PID to ensure that it getsChristian S.J. Peron2007-11-041-1/+1
* Merge kern_sig.c:1.322, sys_process.c:1.136, vfs_vnops.c:1.238 from HEADRobert Watson2006-09-031-0/+7
* MFC: rev 1.329Paul Saab2006-05-151-2/+3
* MFC: Call vn_finished_write() before calling the coredump handler which willTor Egge2006-05-141-1/+1
* MFC revision 1.325.David Xu2006-02-271-34/+44
* MFC following revisions to fix sleep queue and threadDavid Xu2006-02-271-35/+39
* MFC following revisions:David Xu2006-01-071-2/+0
* Fix a bug relavant to debugging, a masked signal unexpectedly interruptsDavid Xu2005-06-061-52/+37
* Oops, forgot to update this file.David Xu2005-04-191-17/+9
* Suspend all other threads in the process while generating a core dump.David Schultz2005-04-101-1/+11
* The td_waitset is pointing to a stack address when thread is waitingDavid Xu2005-03-041-19/+6
* In kern_sigtimedwait, remove waitset bits for td_sigmask beforeDavid Xu2005-03-021-28/+10
* Don't restart a timeout wait in kern_sigtimedwait, also allow itDavid Xu2005-02-191-11/+27
* Backout previous change (disabling of security checks for signals deliveredMaxim Sobolev2005-02-131-22/+11
* Split out kill(2) syscall service routine into user-level and kernel part, theMaxim Sobolev2005-02-131-11/+22
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* - If delivering a signal will result in killing a process that has aJeff Roberson2004-12-131-0/+2
* Fix an off by one error. MAXPATHLEN already has +1.Warner Losh2004-11-151-1/+1
* Allow kill -9 to kill processes stuck in procfs STOPEVENTs.Alfred Perlstein2004-10-301-0/+10
* Backout 1.291.Alfred Perlstein2004-10-291-10/+0
* Use scheduler api to adjust thread priority.David Xu2004-10-051-2/+3
* Don't bother to turn off other P_STOPPED bits for SIGKILL, doingDavid Xu2004-10-031-1/+1
* Clear a process's procfs trace points upon delivery of SIGKILL.Alfred Perlstein2004-10-011-0/+10
* Remove an unneeded argument..Julian Elischer2004-08-311-1/+1
* Add locking to the kqueue subsystem. This also makes the kqueue subsystemJohn-Mark Gurney2004-08-151-7/+3
* add option to automaticly mark core dumps with the nodump flagJohn-Mark Gurney2004-08-091-0/+6
* Don't skip permission checks when sending signals to zombie processes.Pawel Jakub Dawidek2004-08-031-13/+7
* Syscall kill(2) called for a zombie process should return 0.Pawel Jakub Dawidek2004-07-291-1/+10
* Improve readability a bit by changing some code at the end of a functionJohn Baldwin2004-07-161-6/+2
* Add code to support debugging threaded process.David Xu2004-07-131-44/+81
* Implement the PT_LWPINFO request. This request can be used by theMarcel Moolenaar2004-07-121-0/+3
* - Change mi_switch() and sched_switch() to accept an optional thread toJohn Baldwin2004-07-021-2/+2
* Deorbit COMPAT_SUNOS.Poul-Henning Kamp2004-06-111-19/+7
* According to SUSv3, sigwait is different with sigwaitinfo, sigwaitDavid Xu2004-06-071-5/+12
* Move TDF_SA from td_flags to td_pflags (and rename it accordingly)Tim J. Robbins2004-06-021-5/+5
* Fixed some style bugs in tdsigwakeup().Bruce Evans2004-05-211-11/+10
* In tdsigwakeup(), use TD_ON_SLEEPQ() rather than TD_IS_SLEEPING() to see ifJohn Baldwin2004-05-201-1/+1
* stop() no longer needs sched_lock held; in fact, holding sched_lock causesColin Percival2004-04-121-3/+2
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-051-4/+0
* Shorten some XXXKSE commentryPeter Wemm2004-03-291-4/+2
* - Push down Giant in exit() and wait().John Baldwin2004-03-051-12/+13
* Use different dummy wait channels to avoid panic in msleep().Dag-Erling Smørgrav2004-03-031-3/+3
* Switch the sleep/wakeup and condition variable implementations to use theJohn Baldwin2004-02-271-16/+7
* Locking for the per-process resource limits structure.John Baldwin2004-02-041-5/+3
* Assert process lock in ptracestop(), since we're going to relyRobert Watson2004-01-291-0/+1
* Move the part of the comment which applies to osigsuspend whereAlexander Kabaev2004-01-281-2/+5
* - Add a flags parameter to mi_switch. The value of flags may be SW_VOL orJeff Roberson2004-01-251-4/+2
* When not creating a core dump due to resource limits specifyingRobert Watson2004-01-111-1/+1
* Drop the sigacts mutex around calls to stopevent() to avoid sleepingRobert Watson2004-01-081-2/+10
* Make sigaltstack as per-threaded, because per-process sigaltstack stateDavid Xu2004-01-031-37/+28