| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove various bits of conditional Alpha code and fixup a few comments. | John Baldwin | 2006-05-12 | 1 | -5/+1 |
* | Call vn_finished_write() before calling the coredump handler which will | Tor Egge | 2006-05-07 | 1 | -1/+1 |
* | Don't try to kill embryonic processes in killpg1(). This prevents | Paul Saab | 2006-04-21 | 1 | -2/+3 |
* | - Conditionalize Giant around VFS operations for ALQ, ktrace, and | John Baldwin | 2006-03-28 | 1 | -13/+12 |
* | Remove _STOPEVENT call, it is already called in issignal, simplify | David Xu | 2006-03-09 | 1 | -6/+1 |
* | Add signal set sq_kill to sigqueue structure, the member saves all | David Xu | 2006-03-02 | 1 | -3/+23 |
* | 1. Refine kern_sigtimedwait() to remove redundant code. | David Xu | 2006-02-23 | 1 | -31/+43 |
* | Code cleanup, simply compare with curproc. | David Xu | 2006-02-23 | 1 | -2/+1 |
* | Fix a long standing race between sleep queue and thread | David Xu | 2006-02-15 | 1 | -6/+11 |
* | Audit the arguments to the kill(2) and killpg(2) system calls. | Wayne Salamon | 2006-02-14 | 1 | -0/+7 |
* | In order to speed up process suspension on MP machine, send IPI to | David Xu | 2006-02-13 | 1 | -31/+29 |
* | Create childproc_jobstate function to report job control state, this | David Xu | 2006-02-04 | 1 | -42/+49 |
* | Avoid kernel panic when attaching a process which may not be stopped | David Xu | 2005-12-24 | 1 | -2/+0 |
* | Add a sysctl to force a process to sigexit if a trap signal is | David Xu | 2005-12-09 | 1 | -0/+17 |
* | Cleanup sigqueue sysctl. | David Xu | 2005-12-09 | 1 | -6/+2 |
* | Fix a lock leak in childproc_continued(). | David Xu | 2005-12-06 | 1 | -1/+3 |
* | set signal queue values for sysconf(). | David Xu | 2005-12-01 | 1 | -0/+4 |
* | Make sure only remove one signal by debugger. | David Xu | 2005-11-12 | 1 | -1/+2 |
* | WIFxxx macros requires an int type but p_xstat is short, convert it | David Xu | 2005-11-09 | 1 | -2/+3 |
* | Add support for queueing SIGCHLD same as other UNIX systems did. | David Xu | 2005-11-08 | 1 | -10/+87 |
* | Fix name compatible problem with POSIX standard. the sigval_ptr and | David Xu | 2005-11-04 | 1 | -1/+1 |
* | Cleanup some signal interfaces. Now the tdsignal function accepts | David Xu | 2005-11-03 | 1 | -45/+50 |
* | Let itimer store itimerspec instead of itimerval, so I don't have to | David Xu | 2005-10-30 | 1 | -1/+5 |
* | 1. Make ksiginfo_alloc and ksiginfo_free public. | David Xu | 2005-10-23 | 1 | -12/+58 |
* | 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, most | David Xu | 2005-10-14 | 1 | -172/+503 |
* | Fix a bug relavant to debugging, a masked signal unexpectedly interrupts | David Xu | 2005-06-06 | 1 | -52/+37 |
* | Oops, forgot to update this file. | David Xu | 2005-04-19 | 1 | -17/+9 |
* | Suspend all other threads in the process while generating a core dump. | David Schultz | 2005-04-10 | 1 | -1/+11 |
* | The td_waitset is pointing to a stack address when thread is waiting | David Xu | 2005-03-04 | 1 | -19/+6 |
* | In kern_sigtimedwait, remove waitset bits for td_sigmask before | David Xu | 2005-03-02 | 1 | -28/+10 |
* | Don't restart a timeout wait in kern_sigtimedwait, also allow it | David Xu | 2005-02-19 | 1 | -11/+27 |
* | Backout previous change (disabling of security checks for signals delivered | Maxim Sobolev | 2005-02-13 | 1 | -22/+11 |
* | Split out kill(2) syscall service routine into user-level and kernel part, the | Maxim Sobolev | 2005-02-13 | 1 | -11/+22 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | Warner Losh | 2005-01-06 | 1 | -1/+1 |
* | - If delivering a signal will result in killing a process that has a | Jeff Roberson | 2004-12-13 | 1 | -0/+2 |
* | Fix an off by one error. MAXPATHLEN already has +1. | Warner Losh | 2004-11-15 | 1 | -1/+1 |
* | Allow kill -9 to kill processes stuck in procfs STOPEVENTs. | Alfred Perlstein | 2004-10-30 | 1 | -0/+10 |
* | Backout 1.291. | Alfred Perlstein | 2004-10-29 | 1 | -10/+0 |
* | Use scheduler api to adjust thread priority. | David Xu | 2004-10-05 | 1 | -2/+3 |
* | Don't bother to turn off other P_STOPPED bits for SIGKILL, doing | David Xu | 2004-10-03 | 1 | -1/+1 |
* | Clear a process's procfs trace points upon delivery of SIGKILL. | Alfred Perlstein | 2004-10-01 | 1 | -0/+10 |
* | Remove an unneeded argument.. | Julian Elischer | 2004-08-31 | 1 | -1/+1 |
* | Add locking to the kqueue subsystem. This also makes the kqueue subsystem | John-Mark Gurney | 2004-08-15 | 1 | -7/+3 |
* | add option to automaticly mark core dumps with the nodump flag | John-Mark Gurney | 2004-08-09 | 1 | -0/+6 |
* | Don't skip permission checks when sending signals to zombie processes. | Pawel Jakub Dawidek | 2004-08-03 | 1 | -13/+7 |
* | Syscall kill(2) called for a zombie process should return 0. | Pawel Jakub Dawidek | 2004-07-29 | 1 | -1/+10 |
* | Improve readability a bit by changing some code at the end of a function | John Baldwin | 2004-07-16 | 1 | -6/+2 |
* | Add code to support debugging threaded process. | David Xu | 2004-07-13 | 1 | -44/+81 |
* | Implement the PT_LWPINFO request. This request can be used by the | Marcel Moolenaar | 2004-07-12 | 1 | -0/+3 |
* | - Change mi_switch() and sched_switch() to accept an optional thread to | John Baldwin | 2004-07-02 | 1 | -2/+2 |