| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a number of style issues in the MALLOC / FREE commit. I've tried to | des | 2008-10-23 | 1 | -3/+2 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -6/+5 |
* | The kqueue_register() function assumes that it is called from the top of | kib | 2008-07-07 | 1 | -15/+67 |
* | The r178914 I erronously put the setting of the KQ_FLUXWAIT flag before | kib | 2008-07-07 | 1 | -2/+1 |
* | Kqueue_scan() may sleep when encountered the influx knotes. On the other | kib | 2008-05-10 | 1 | -1/+10 |
* | The kqueue_close() encountering the KN_INFLUX knotes on the kq being | kib | 2008-05-10 | 1 | -4/+11 |
* | - Convert two timeout users to the new callout_reset_curcpu() api. | jeff | 2008-04-02 | 1 | -3/+3 |
* | In keeping with style(9)'s recommendations on macros, use a ';' | rwatson | 2008-03-16 | 1 | -1/+1 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -0/+11 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -23/+11 |
* | Refactor select to reduce contention and hide internal implementation | jeff | 2007-12-16 | 1 | -3/+6 |
* | Revert previous commits which I committed by mistake. | rodrigc | 2007-07-14 | 1 | -9/+0 |
* | The last entry in the ext2_opts array must be NULL, | rodrigc | 2007-07-14 | 1 | -0/+9 |
* | In kern_kevent(), unconditionally fdrop() fp once fget() has succeeded, | rwatson | 2007-05-28 | 1 | -2/+1 |
* | Select a more appealing spelling for the word acquire. | rwatson | 2007-05-27 | 1 | -10/+10 |
* | Replace custom file descriptor array sleep lock constructed using a mutex | rwatson | 2007-04-04 | 1 | -9/+9 |
* | Remove 'MPSAFE' annotations from the comments above most system calls: all | rwatson | 2007-03-04 | 1 | -6/+0 |
* | Save exit status of an exiting process in kn_data in the knote. | jhb | 2006-11-20 | 1 | -0/+1 |
* | remove unnecessary NULL check... | jmg | 2006-09-25 | 1 | -2/+1 |
* | hide kqueue_register from public view, and replace it w/ kqfd_register... | jmg | 2006-09-24 | 1 | -2/+30 |
* | add KTRACE hooks into kevent... This will help people debug their kqueue | jmg | 2006-09-24 | 1 | -2/+38 |
* | Use fget() in kqueue_register() instead of doing all the work by hand. | jhb | 2006-06-12 | 1 | -17/+3 |
* | Don't forget to unlock kq lock in low memory situations. | pjd | 2006-06-02 | 1 | -0/+1 |
* | Remove confusing done_noglobal label. The KQ_GLOBAL_UNLOCK() macro know | pjd | 2006-06-02 | 1 | -2/+1 |
* | Use SLIST_FOREACH_SAFE() macro, because knote_drop() can free an element | pjd | 2006-06-02 | 1 | -2/+2 |
* | Drop the kqueue global mutex as soon as we are finished with it rather | jhb | 2006-04-14 | 1 | -4/+2 |
* | spell unlock correctly, this is relatively minor as it's rare someone would | jmg | 2006-04-07 | 1 | -1/+1 |
* | mask out any action when copying the flags from the event to the knote.. | jmg | 2006-04-01 | 1 | -0/+2 |
* | hold the list lock over the f_event and KNOTE_ACTIVATE calls... This closes | jmg | 2006-03-29 | 1 | -1/+1 |
* | Add in kqueue support to LIO event notification and fix how it handled | ambrisko | 2005-10-12 | 1 | -2/+6 |
* | Fix race condition that caused activation of an event to | ups | 2005-09-15 | 1 | -2/+4 |
* | Fix the recent panics/LORs/hangs created by my kqueue commit by: | ssouhlal | 2005-07-01 | 1 | -28/+83 |
* | Wrap copyin/copyout for kevent so the 32bit wrapper does not have | ps | 2005-06-03 | 1 | -44/+51 |
* | make stat return an zero'd struct, and be a FIFO again... This is only | jmg | 2005-05-24 | 1 | -1/+10 |
* | fix aio+kq... I've been running ambrisko's test program for much longer | jmg | 2005-03-18 | 1 | -8/+11 |
* | Use kern_kevent instead of the stackgap for 32bit syscall wrapping. | ps | 2005-03-01 | 1 | -33/+75 |
* | When invoking callout_init(), spell '1' as "CALLOUT_MPSAFE". | rwatson | 2005-02-22 | 1 | -1/+1 |
* | Make a bunch of malloc types static. | phk | 2005-02-10 | 1 | -1/+2 |
* | Move a FILEDESC_UNLOCK upwards to silence witness. | phk | 2004-11-16 | 1 | -1/+1 |
* | Introduce an alias for FILEDESC_{UN}LOCK() with the suffix _FAST. | phk | 2004-11-13 | 1 | -4/+4 |
* | /me gets the wrong patch out of the pr :( | jmg | 2004-10-14 | 1 | -2/+2 |
* | fix a bug where signal events didn't set the flags for attach/detach.. | jmg | 2004-10-13 | 1 | -0/+2 |
* | unlock global lock in kqueue_scan before msleep'ing to prevent dead | jmg | 2004-09-14 | 1 | -0/+2 |
* | remove giant required from kqueue_close.. | jmg | 2004-09-10 | 1 | -2/+0 |
* | don't call f_detach if the filter has alread removed the knote.. This | jmg | 2004-09-06 | 1 | -8/+10 |
* | Allocate the marker, when scanning a kqueue, from the "heap" instead of the | green | 2004-08-16 | 1 | -6/+12 |
* | Add locking to the kqueue subsystem. This also makes the kqueue subsystem | jmg | 2004-08-15 | 1 | -328/+956 |
* | looks like rwatson forgot tabs... :) | jmg | 2004-08-13 | 1 | -2/+2 |
* | Trim trailing white space. | rwatson | 2004-08-12 | 1 | -11/+11 |
* | Push Giant acquisition down into fo_stat() from most callers. Acquire | rwatson | 2004-07-22 | 1 | -0/+1 |