| Commit message (Expand) | Author | Age | Files | Lines |
* | Try to fetch thread mailbox address in page fault trap, so when thread | David Xu | 2003-10-30 | 1 | -1/+2 |
* | Check (locked) before performing an advisory unlock following a failure | Robert Watson | 2003-10-25 | 1 | -1/+2 |
* | When generate a core dump, use advisory locking in an advisory way: | Robert Watson | 2003-10-25 | 1 | -6/+6 |
* | Don't clear signal mask in execsig(). RELENG_4 does not clear it and POSIX | David Xu | 2003-10-13 | 1 | -4/+0 |
* | Move some tracing related code into its own function as it will | Robert Drehmel | 2003-09-26 | 1 | -15/+24 |
* | panic() if we try to handle an out-of-range signal number in | Jacques Vidrine | 2003-08-10 | 1 | -2/+5 |
* | Use correct signal when calling sigexit. | David Xu | 2003-07-30 | 1 | -1/+3 |
* | Add fdidx argument to vn_open() and vn_open_cred() and pass -1 throughout. | Poul-Henning Kamp | 2003-07-27 | 1 | -1/+1 |
* | The POSIX spec also requires that kern_sigtimedwait return | Mike Makonnen | 2003-07-24 | 1 | -1/+1 |
* | Always deliver synchronous signal to UTS for SA threads. | David Xu | 2003-07-21 | 1 | -2/+14 |
* | Fix sigwait to conform to POSIX. | David Xu | 2003-07-17 | 1 | -67/+109 |
* | Rename thread_siginfo to cpu_thread_siginfo | David Xu | 2003-07-15 | 1 | -1/+1 |
* | If a thread is sending signal to its process, if the thread can handle | David Xu | 2003-07-11 | 1 | -3/+4 |
* | Make the conditional, which decides what siglist to put a signal on, | Mike Makonnen | 2003-07-05 | 1 | -8/+5 |
* | Signals sent specifically to a particular thread must | Mike Makonnen | 2003-07-03 | 1 | -12/+14 |
* | o Change kse_thr_interrupt to allow send a signal to a specified thread, | David Xu | 2003-06-28 | 1 | -8/+88 |
* | Fix POSIX compatible bug for sigwaitinfo and sigtimedwait. | David Xu | 2003-06-28 | 1 | -4/+11 |
* | When a STOP signal is being sent to a process, it is possible all | David Xu | 2003-06-20 | 1 | -2/+16 |
* | Fix typo. td should be td0. | David Xu | 2003-06-20 | 1 | -1/+1 |
* | 1. Add code to support bound thread. when blocked, a bound thread never | David Xu | 2003-06-15 | 1 | -1/+1 |
* | Rename P_THREADED to P_SA. P_SA means a process is using scheduler | David Xu | 2003-06-15 | 1 | -1/+1 |
* | Use __FBSDID(). | David E. O'Brien | 2003-06-11 | 1 | -1/+3 |
* | - Add a td_pflags field to struct thread for private flags accessed only by | John Baldwin | 2003-06-09 | 1 | -12/+6 |
* | Fix long standing bug that prevents the PT_CONTINUE, PT_KILL and | David E. O'Brien | 2003-05-16 | 1 | -9/+10 |
* | - Merge struct procsig with struct sigacts. | John Baldwin | 2003-05-13 | 1 | -81/+161 |
* | Remove Giant from kern_sigsuspend() and osigsuspend() as these should now | John Baldwin | 2003-05-09 | 1 | -10/+2 |
* | Mostly sort the includes. | John Baldwin | 2003-05-05 | 1 | -13/+13 |
* | Lock the proc lock around calls to tdsignal() in the sigwait() family of | John Baldwin | 2003-05-05 | 1 | -6/+12 |
* | Make issignal() private to kern_sig.c since it is only called from cursig() | John Baldwin | 2003-05-05 | 1 | -1/+2 |
* | Forgot to remove Giant around call to kern_sigaction() in | John Baldwin | 2003-04-30 | 1 | -4/+1 |
* | Push Giant down into kern_sigaction() instead of locking it around calls | John Baldwin | 2003-04-25 | 1 | -8/+6 |
* | Remove Giant from osigblock(), osigsetmask(), and kern_sigaltstack(). | John Baldwin | 2003-04-23 | 1 | -15/+7 |
* | - Reorganize osigstack() to do the copyin first, grab the proc lock once, | John Baldwin | 2003-04-23 | 1 | -19/+13 |
* | Unbreak sigaltstack syscall. sigonstack is now a function and | David Xu | 2003-04-19 | 1 | -7/+2 |
* | - Make sigonstack() a regular function instead of an inline and add a proc | John Baldwin | 2003-04-18 | 1 | -5/+23 |
* | Rename do_sigprocmask() to kern_sigprocmask() and make it a global symbol | John Baldwin | 2003-04-18 | 1 | -8/+6 |
* | Don't hold the proc lock while performing sigset conversions on local | John Baldwin | 2003-04-17 | 1 | -1/+1 |
* | - Remove garbage SIGSETOR() that snuck into struct sigpending_args | John Baldwin | 2003-04-17 | 1 | -2/+1 |
* | Style fix. | David Xu | 2003-04-12 | 1 | -1/+1 |
* | Check SIG_HOLD action ealier to avoid missing test it in later code. | David Xu | 2003-04-12 | 1 | -9/+7 |
* | - p will be unused in cursig() if INVARIANTS is not defined. Access it | Jeff Roberson | 2003-04-01 | 1 | -3/+1 |
* | - Define sigwait, sigtimedwait, and sigwaitinfo in terms of | Jeff Roberson | 2003-03-31 | 1 | -1/+173 |
* | - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with | Jeff Roberson | 2003-03-31 | 1 | -111/+209 |
* | - Mark signals which may be delivered to any thread in the process with | Jeff Roberson | 2003-03-31 | 1 | -31/+32 |
* | - Change trapsignal() to accept a thread and not a proc. | Jeff Roberson | 2003-03-31 | 1 | -6/+6 |
* | Fix threaded process job control bug. SMP tested. | David Xu | 2003-03-11 | 1 | -27/+33 |
* | Hold the proc lock while accessing p_procsig in trapsignal(). | Tim J. Robbins | 2003-03-09 | 1 | -1/+2 |
* | Replace calls to WITNESS_SLEEP() and witness_list() with equivalent calls | John Baldwin | 2003-03-04 | 1 | -1/+2 |
* | Change the process flags P_KSES to be P_THREADED. | Julian Elischer | 2003-02-27 | 1 | -1/+1 |
* | Fix a bug when handling SIGCONT. | David Xu | 2003-02-26 | 1 | -7/+0 |