| Commit message (Expand) | Author | Age | Files | Lines |
* | Push Giant down into kern_sigaction() instead of locking it around calls | jhb | 2003-04-25 | 1 | -8/+6 |
* | Remove Giant from osigblock(), osigsetmask(), and kern_sigaltstack(). | jhb | 2003-04-23 | 1 | -15/+7 |
* | - Reorganize osigstack() to do the copyin first, grab the proc lock once, | jhb | 2003-04-23 | 1 | -19/+13 |
* | Unbreak sigaltstack syscall. sigonstack is now a function and | davidxu | 2003-04-19 | 1 | -7/+2 |
* | - Make sigonstack() a regular function instead of an inline and add a proc | jhb | 2003-04-18 | 1 | -5/+23 |
* | Rename do_sigprocmask() to kern_sigprocmask() and make it a global symbol | jhb | 2003-04-18 | 1 | -8/+6 |
* | Don't hold the proc lock while performing sigset conversions on local | jhb | 2003-04-17 | 1 | -1/+1 |
* | - Remove garbage SIGSETOR() that snuck into struct sigpending_args | jhb | 2003-04-17 | 1 | -2/+1 |
* | Style fix. | davidxu | 2003-04-12 | 1 | -1/+1 |
* | Check SIG_HOLD action ealier to avoid missing test it in later code. | davidxu | 2003-04-12 | 1 | -9/+7 |
* | - p will be unused in cursig() if INVARIANTS is not defined. Access it | jeff | 2003-04-01 | 1 | -3/+1 |
* | - Define sigwait, sigtimedwait, and sigwaitinfo in terms of | jeff | 2003-03-31 | 1 | -1/+173 |
* | - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with | jeff | 2003-03-31 | 1 | -111/+209 |
* | - Mark signals which may be delivered to any thread in the process with | jeff | 2003-03-31 | 1 | -31/+32 |
* | - Change trapsignal() to accept a thread and not a proc. | jeff | 2003-03-31 | 1 | -6/+6 |
* | Fix threaded process job control bug. SMP tested. | davidxu | 2003-03-11 | 1 | -27/+33 |
* | Hold the proc lock while accessing p_procsig in trapsignal(). | tjr | 2003-03-09 | 1 | -1/+2 |
* | Replace calls to WITNESS_SLEEP() and witness_list() with equivalent calls | jhb | 2003-03-04 | 1 | -1/+2 |
* | Change the process flags P_KSES to be P_THREADED. | julian | 2003-02-27 | 1 | -1/+1 |
* | Fix a bug when handling SIGCONT. | davidxu | 2003-02-26 | 1 | -7/+0 |
* | - Add a new function, thread_signal_add(), that is called from postsig to | jeff | 2003-02-17 | 1 | -3/+4 |
* | Move a bunch of flags from the KSE to the thread. | julian | 2003-02-17 | 1 | -3/+3 |
* | - Split the struct kse into struct upcall and struct kse. struct kse will | jeff | 2003-02-17 | 1 | -6/+0 |
* | Acquire Giant around calls to kern_sigaction() in sigaction(), | tjr | 2003-02-15 | 1 | -17/+9 |
* | osigpending() no longer needs Giant, for the same reason sigpending() | tjr | 2003-02-15 | 1 | -3/+0 |
* | All uses of p_siglist are protected by the proc lock now, so there's | tjr | 2003-02-15 | 1 | -6/+1 |
* | Reversion of commit by Davidxu plus fixes since applied. | julian | 2003-02-01 | 1 | -0/+6 |
* | No longer force COMPAT_FREEBSD4 to be on. | peter | 2003-01-27 | 1 | -3/+0 |
* | Move UPCALL related data structure out of kse, introduce a new | davidxu | 2003-01-26 | 1 | -6/+0 |
* | Forgot to call setrunnable() for un-idled thread. | davidxu | 2003-01-07 | 1 | -0/+1 |
* | Check signals for idled threads. | davidxu | 2003-01-07 | 1 | -2/+2 |
* | Add code to ddb to allow backtracing an arbitrary thread. | julian | 2002-12-28 | 1 | -0/+5 |
* | Don't cast a pointer to (intptr_t) and then on to (int) when we cannot | phk | 2002-12-17 | 1 | -3/+3 |
* | Split 4.x and 5.x signal handling so that we can keep 4.x signal | peter | 2002-10-25 | 1 | -4/+73 |
* | Fix mis-indentation. | phk | 2002-10-02 | 1 | -1/+1 |
* | Back our kernel support for reliable signal queues. | jmallett | 2002-10-01 | 1 | -36/+28 |
* | Back out code changes that snuck into the previous forced commit. | jmallett | 2002-10-01 | 1 | -9/+4 |
* | (Forced commit, to clarify previous commit of ksiginfo/signal queue code.) | jmallett | 2002-10-01 | 1 | -4/+9 |
* | First half of implementation of ksiginfo, signal queues, and such. This | jmallett | 2002-09-30 | 1 | -28/+36 |
* | Fix style nit where conditionally compiled code was unconditionalized, | obrien | 2002-09-29 | 1 | -2/+1 |
* | Be consistent about "static" functions: if the function is marked | phk | 2002-09-28 | 1 | -1/+1 |
* | Add kernel support needed for the KSE-aware libpthread: | mini | 2002-09-16 | 1 | -0/+3 |
* | Allocate KSEs and KSEGRPs separatly and remove them from the proc structure. | julian | 2002-09-15 | 1 | -1/+8 |
* | Completely redo thread states. | julian | 2002-09-11 | 1 | -12/+12 |
* | s/SGNL/SIG/ | davidxu | 2002-09-05 | 1 | -3/+3 |
* | In the kernel code, we have the tsleep() call with the PCATCH argument. | davidxu | 2002-09-03 | 1 | -1/+27 |
* | Split out a number of mostly VFS and signal related syscalls into | iedowse | 2002-09-01 | 1 | -29/+47 |
* | move the assert to cover more cases | julian | 2002-08-26 | 1 | -1/+1 |
* | Don't re-lock the sched lock if we didn't unlock it. | julian | 2002-08-23 | 1 | -1/+1 |
* | Revert some suspension/sleep/signal code from KSE-III | julian | 2002-08-21 | 1 | -43/+27 |