| Commit message (Expand) | Author | Age | Files | Lines |
* | Make the conditional, which decides what siglist to put a signal on, | mtm | 2003-07-05 | 1 | -8/+5 |
* | I was so happy I found the semi-colon from hell that I didn't | mtm | 2003-07-04 | 1 | -1/+1 |
* | - Parse the cpu topology map in sched_setup(). | jeff | 2003-07-04 | 1 | -13/+53 |
* | Use the f_vnode field to tell which file descriptors have a vnode. | phk | 2003-07-04 | 3 | -19/+15 |
* | It's unfair how one extraneous semi-colon can cause so much grief. | mtm | 2003-07-04 | 1 | -1/+1 |
* | style(9) | mtm | 2003-07-04 | 1 | -8/+2 |
* | In setpgrp(), don't assume a pgrp won't exist if the provided pgid is the same | cognet | 2003-07-04 | 1 | -12/+13 |
* | kse_thr_interrupt should target the thread, specifically. | mtm | 2003-07-04 | 2 | -2/+2 |
* | Signals sent specifically to a particular thread must | mtm | 2003-07-03 | 4 | -19/+17 |
* | - Add comments about the maintenance of the per-thread list of contested | jhb | 2003-07-02 | 2 | -8/+18 |
* | Add a resource_disabled() helper function that returns true (non-zero) if | jhb | 2003-07-02 | 1 | -0/+14 |
* | typo fix in comment. | phk | 2003-07-02 | 1 | -1/+1 |
* | Allow SA process unblocks a thread blocked in condition variable. | davidxu | 2003-07-02 | 1 | -2/+8 |
* | Add a new mount flag MNT_BYFSID that can be used to unmount a file | iedowse | 2003-07-01 | 1 | -23/+32 |
* | Make swi_vm be INTR_MPSAFE. On all platforms, it is only used to activate | scottl | 2003-07-01 | 1 | -1/+1 |
* | Fix typo. | davidxu | 2003-06-30 | 2 | -2/+2 |
* | Don't use fuword() and suword() on struct members of type int. This | marcel | 2003-06-28 | 2 | -8/+8 |
* | - Don't migrate to stopped cpus. | jeff | 2003-06-28 | 1 | -4/+4 |
* | o Change kse_thr_interrupt to allow send a signal to a specified thread, | davidxu | 2003-06-28 | 6 | -144/+343 |
* | - If smp is not started yet don't try to load balance or we'll put threads | jeff | 2003-06-28 | 1 | -0/+3 |
* | Fix POSIX compatible bug for sigwaitinfo and sigtimedwait. | davidxu | 2003-06-28 | 1 | -4/+11 |
* | - Throttle the inherited sleep and run time in sched_fork_kseg(). This | jeff | 2003-06-28 | 1 | -4/+4 |
* | - Adjust the default maximum slice value to ~140ms. This has improved the | jeff | 2003-06-28 | 1 | -2/+2 |
* | Tidy up leftover lazy_switch instrumentation that is no longer needed. | peter | 2003-06-27 | 1 | -7/+0 |
* | Fix this to build on alpha. Build test successful. | smkelly | 2003-06-27 | 1 | -1/+1 |
* | - Add a software watchdog facility. | smkelly | 2003-06-26 | 1 | -0/+82 |
* | Fix leap second processing by the kernel time keeping routines. | imp | 2003-06-25 | 1 | -6/+27 |
* | During a positive leap second, the tai_time offset should be | imp | 2003-06-25 | 1 | -1/+1 |
* | At this point targp will always be NULL, so remove the useless if. | cognet | 2003-06-25 | 1 | -2/+0 |
* | Use UTC rather than GMT to describe time scale. latter is obsolete. | imp | 2003-06-23 | 1 | -2/+2 |
* | Redesign the externalization APIs from the MAC Framework to | rwatson | 2003-06-23 | 1 | -40/+20 |
* | Prefer the vop_rmextattr() vnode operation for removing extended | rwatson | 2003-06-22 | 3 | -5/+12 |
* | Expose vop_rmextattr as an explicit operation at the vnode operation | rwatson | 2003-06-22 | 1 | -0/+11 |
* | Add an explicit credential argument to alq_open() to allow the caller to | rwatson | 2003-06-22 | 2 | -5/+7 |
* | Add a f_vnode field to struct file. | phk | 2003-06-22 | 9 | -65/+74 |
* | When DDB is active, always send printf() output directly to the | iedowse | 2003-06-22 | 1 | -1/+5 |
* | Use a new message buffer `consmsgbuf' to forward messages to a | iedowse | 2003-06-22 | 3 | -16/+86 |
* | Replace the code for reading and writing the kernel message buffer | iedowse | 2003-06-22 | 3 | -112/+272 |
* | - lticks was erroneously being updated in sched_pctcpu(). This was causing | jeff | 2003-06-21 | 1 | -2/+0 |
* | - Don't allow nice to have such a large effect on priority. This was | jeff | 2003-06-21 | 1 | -8/+7 |
* | Fix a divide-by-zero on kern.log_wakeups_per_second tunable. | bmilekic | 2003-06-20 | 1 | -0/+8 |
* | Add comment about **vpp being special-cased in vnode_if.awk (1.38) | se | 2003-06-20 | 1 | -0/+6 |
* | cpu_set_upcall_kse needs to access userspace, release schedule lock | davidxu | 2003-06-20 | 2 | -8/+20 |
* | Don't put callout_lock under #ifdef DIAGNOSTIC despite the fact that it | phk | 2003-06-20 | 1 | -1/+2 |
* | Initialize b_saveaddr when we hand out buffers | phk | 2003-06-20 | 1 | -2/+4 |
* | Crude but efficient: | phk | 2003-06-20 | 1 | -1/+8 |
* | Don't (re)initialize f_gcflag to zero. | phk | 2003-06-20 | 3 | -2/+2 |
* | When a STOP signal is being sent to a process, it is possible all | davidxu | 2003-06-20 | 1 | -2/+16 |
* | Fix typo. td should be td0. | davidxu | 2003-06-20 | 1 | -1/+1 |
* | Unlock the struct file lock before aquiring Giant, otherwise | alfred | 2003-06-19 | 1 | -3/+3 |