Home | History | Annotate | Download | only in dev
History log of /src/sys/arch/amiga/dev/event.c
RevisionDateAuthorComments
 1.17  26-Sep-2021  thorpej Driver "kqfilter" entry points return an error code, so if an invalid
filter is requested, return EINVAL rather than 1.
 1.16  26-Sep-2021  thorpej Change the kqueue filterops::f_isfd field to filterops::f_flags, and
define a flag FILTEROP_ISFD that has the meaning of the prior f_isfd.
Field and flag name aligned with OpenBSD.

This does not constitute a functional or ABI change, as the field location
and size, and the value placed in that field, are the same as the previous
code, but we're bumping __NetBSD_Version__ so 3rd-party module source code
can adapt, as needed.

NetBSD 9.99.89
 1.15  19-Dec-2020  thorpej Use sel{record,remove}_knote().
 1.14  25-Oct-2017  maya branches: 1.14.16;
Use C99 initializer for filterops

Mostly done with spatch with touchups for indentation

@@
expression a;
identifier b,c,d;
identifier p;
@@
const struct filterops p =
- { a, b, c, d
+ {
+ .f_isfd = a,
+ .f_attach = b,
+ .f_detach = c,
+ .f_event = d,
};
 1.13  01-Mar-2008  rmind branches: 1.13.48;
Welcome to 4.99.55:

- Add a lot of missing selinit() and seldestroy() calls.

- Merge selwakeup() and selnotify() calls into a single selnotify().

- Add an additional 'events' argument to selnotify() call. It will
indicate which event (POLL_IN, POLL_OUT, etc) happen. If unknown,
zero may be used.

Note: please pass appropriate value of 'events' where possible.
Proposed on: <tech-kern>
 1.12  04-Mar-2007  christos branches: 1.12.20; 1.12.36; 1.12.40;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.11  11-Dec-2005  christos branches: 1.11.26;
merge ktrace-lwp.
 1.10  07-Aug-2003  agc branches: 1.10.16;
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22364, verified by myself.
 1.9  26-Nov-2002  christos branches: 1.9.6;
si_ -> sel_
 1.8  23-Oct-2002  jdolecek merge kqueue branch into -current

kqueue provides a stateful and efficient event notification framework
currently supported events include socket, file, directory, fifo,
pipe, tty and device changes, and monitoring of processes and signals

kqueue is supported by all writable filesystems in NetBSD tree
(with exception of Coda) and all device drivers supporting poll(2)

based on work done by Jonathan Lemon for FreeBSD
initial NetBSD port done by Luke Mewburn and Jason Thorpe
 1.7  28-Jan-2002  aymeric add __KERNEL_RCSID as suggested by Luke Mewburn
 1.6  26-Jan-2002  aymeric - ANSIfy
- remove some trailing spaces/tabs
- minor style nits
 1.5  11-Oct-1996  mhitch branches: 1.5.42; 1.5.46;
Changes for poll(2).
 1.4  08-Oct-1996  thorpej Merge netbsd-1-2 branch back into mainline.
 1.3  26-Oct-1994  cgd branches: 1.3.6;
new RCS ID format.
 1.2  13-Feb-1994  chopps cleaned up include's relocated grf/* stuf to grfabs*.
 1.1  26-Jan-1994  mw Integrate recent changes done to the amiga branch. Includes support
for the '40.
Support for more scsi controllers (zeus, magnum)
Support for more tapes (in st.c)
New custom chip console code integrated.
 1.3.6.1  31-May-1996  is Add missing splx(). (from Jason Thorpe)
 1.5.46.3  11-Dec-2002  thorpej Sync with HEAD.
 1.5.46.2  11-Nov-2002  nathanw Catch up to -current
 1.5.46.1  28-Feb-2002  nathanw Catch up to -current.
 1.5.42.4  02-Oct-2002  jdolecek do not need the (void *) cast for kn_hook anymore
 1.5.42.3  11-Feb-2002  jdolecek Sync w/ -current.
 1.5.42.2  12-Sep-2001  thorpej Fix a past'o.
 1.5.42.1  09-Sep-2001  thorpej Add kqueue support (not yet compiled).
 1.9.6.4  21-Nov-2004  skrll Adapt to branch.
 1.9.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.9.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.9.6.1  03-Aug-2004  skrll Sync with HEAD
 1.10.16.3  17-Mar-2008  yamt sync with head.
 1.10.16.2  03-Sep-2007  yamt sync with head.
 1.10.16.1  21-Jun-2006  yamt sync with head.
 1.11.26.1  12-Mar-2007  rmind Sync with HEAD.
 1.12.40.1  03-Apr-2008  mjf Sync with HEAD.
 1.12.36.1  24-Mar-2008  keiichi sync with head.
 1.12.20.1  23-Mar-2008  matt sync with HEAD
 1.13.48.1  03-Dec-2017  jdolecek update from HEAD
 1.14.16.1  03-Jan-2021  thorpej Sync w/ HEAD.

RSS XML Feed