Age | Commit message (Expand) | Author |
2018-05-22 | kevent: correctly check that timeout's nanoseconds are on [0, 1000000000) | cheloha |
2018-04-27 | Move FREF() inside fd_getfile(). | Martin Pieuchot |
2018-04-10 | Convert 'struct fileops' definitions to C99. | Martin Pieuchot |
2018-04-08 | Test for preexisting conditions when re-enabling events | Mike Belopuhov |
2018-04-03 | Move FREF()s just after fd_getfile() in sys_kevent(), sys_lseek() and | Martin Pieuchot |
2018-01-13 | introduce a filter called EVFILT_DEVICE that can be used to notify | Robert Nagy |
2017-12-18 | Revert support for multiple threads to enter kqueue_scan() in parallel. | Martin Pieuchot |
2017-11-04 | Make it possible for multiple threads to enter kqueue_scan() in parallel. | Martin Pieuchot |
2017-10-11 | Move `kq_count' increase/decrease close to the corresponding TAILQ_* | Martin Pieuchot |
2017-10-11 | Move kq_kev from struct kqueue to the stack. | Martin Pieuchot |
2017-05-31 | Add support for EV_RECEIPT and EV_DISPATCH flags | Mike Belopuhov |
2017-02-11 | Add a flags argument to falloc() that lets it optionally set the | Philip Guenther |
2016-09-24 | move knhash size to event.h, use it for hashfree. from Mathieu - | Ted Unangst |
2016-09-15 | all pools have their ipl set via pool_setipl, so fold it into pool_init. | David Gwynne |
2016-08-25 | pool_setipl | David Gwynne |
2016-07-14 | Prevent silly states via knotes on pids > 2^32 and on nonexistent signals. | Philip Guenther |
2016-07-14 | kevent validates that ident is a valid fd by getting the file. one sad | Ted Unangst |
2016-05-13 | contrary to documentation and other implementations, kevent was preventing | Ted Unangst |
2016-01-06 | tidy up whitespace, etc. | Ted Unangst |
2015-12-20 | size for free, sent and reminded by Mathieu. also delete null check. | Ted Unangst |
2015-12-17 | arrays decay to pointers without needing & | Ted Unangst |
2015-12-17 | add ktrace to kevent. ok guenther | Ted Unangst |
2015-12-05 | remove stale lint annotations | Ted Unangst |
2015-10-29 | In knote(), use SLIST_FOREACH_SAFE when walking the klist since a call to | Joel Sing |
2015-10-11 | Always set the timeout at least one tick in the future for EVFILT_TIMER | Philip Guenther |
2015-10-10 | shuffle #ifdef TIOCSTI block to avoid a future /*FALLTHROUGH*/ mistake. | Theo de Raadt |
2015-10-09 | oops, snuck into a syscalls sync; spotted by sthen | Theo de Raadt |
2015-10-09 | sync | Theo de Raadt |
2014-12-19 | start retiring the nointr allocator. specify PR_WAITOK as a flag as a | Ted Unangst |
2014-12-09 | More malloc() -> mallocarray() in the kernel. | Doug Hogan |
2014-11-03 | pass size argument to free() | Theo de Raadt |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-05-15 | knote_processexit() needs the thread to pass down to FRELE(), so pass it | Philip Guenther |
2014-03-30 | Eliminates struct pcred by moving the real and saved ugids into | Philip Guenther |
2014-01-22 | Delete casts in assignments to void* and passed void* arguments. | Philip Guenther |
2014-01-21 | bzero -> memset | Ted Unangst |
2013-11-14 | Use (N * sizeof(struct klist)) instead of (N * sizeof(struct klist *)) | Charles Longeau |
2013-09-14 | Snapshots for all archs have been built, so remove the T32 code | Philip Guenther |
2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data | Philip Guenther |
2013-05-31 | On NOTE_EXIT event of EVFILT_PROC, store the exit status in kn_data. | YASUOKA Masahiko |
2013-04-24 | When a ucom(4) is removed, it frees the tty with ttyfree(). However if | Nicholas Marriott |
2012-07-08 | kevent(EV_DELETE) shouldn't be calling closef(), as that releases POSIX | Philip Guenthe |
2012-06-06 | EVFILT_SIGNAL and EVFILT_PROC events need to track the process they're | Philip Guenthe |
2012-04-22 | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in | Philip Guenthe |
2012-03-25 | release the file ref to the kqueue while in kevent(), so that close() | Theo de Raadt |
2012-03-19 | Add tracing and dumping of "pointer to struct" syscall arguments for | Philip Guenthe |
2012-03-10 | Add PS_EXITING to better differentiate between the process exiting and | Philip Guenthe |
2012-02-15 | Hold struct filedesc's fd_lock when writing to the fd_ofiles, fd_ofileflags, | Philip Guenthe |
2011-07-02 | kqueue attach functions should return an errno or 0, not a plain 1. Fix | Nicholas Marriott |
2011-05-03 | spaces | Marco Peereboom |