History log of /src/sys/arch/atari/dev/event.c |
Revision | | Date | Author | Comments |
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 | - malloc(9) -> kmem(9) - 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 |
| 14-Mar-2009 |
dsl | branches: 1.13.22; Change about 4500 of the K&R function definitions to ANSI ones. There are still about 1600 left, but they have ',' or /* ... */ in the actual variable definitions - which my awk script doesn't handle. There are also many that need () -> (void). (The script does handle misordered arguments.)
|
1.12 |
| 01-Mar-2008 |
rmind | branches: 1.12.4; 1.12.12; 1.12.18; 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.11 |
| 04-Mar-2007 |
christos | branches: 1.11.20; 1.11.36; 1.11.40; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
1.10 |
| 11-Dec-2005 |
christos | branches: 1.10.26; merge ktrace-lwp.
|
1.9 |
| 07-Aug-2003 |
agc | branches: 1.9.16; Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22364, verified by myself.
|
1.8 |
| 15-Jul-2003 |
lukem | __KERNEL_RCSID()
|
1.7 |
| 26-Nov-2002 |
christos | branches: 1.7.6; si_ -> sel_
|
1.6 |
| 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.5 |
| 08-Oct-1996 |
thorpej | branches: 1.5.42; 1.5.46; Merge the netbsd-1-2 branch into the mainline.
|
1.4 |
| 25-Sep-1996 |
leo | Catchup with -current: - Extra argument to boot() - select -> poll
|
1.3 |
| 30-May-1996 |
leo | Add missing spl(x). (Jason Thorpe)
|
1.2 |
| 25-Jun-1995 |
leo | branches: 1.2.6; Mouse driver added.
|
1.1 |
| 26-Mar-1995 |
leo | branches: 1.1.1; Initial revision
|
1.1.1.1 |
| 26-Mar-1995 |
leo | NetBSD/Atari, port by Leo Weppelman.
|
1.2.6.1 |
| 18-Jun-1996 |
leo | Pull up from trunk.
|
1.5.46.2 |
| 11-Dec-2002 |
thorpej | Sync with HEAD.
|
1.5.46.1 |
| 11-Nov-2002 |
nathanw | Catch up to -current
|
1.5.42.3 |
| 02-Oct-2002 |
jdolecek | do not need the (void *) cast for kn_hook anymore
|
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.7.6.4 |
| 17-Jan-2005 |
skrll | Adapt to branch.
|
1.7.6.3 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.7.6.2 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.7.6.1 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.9.16.3 |
| 17-Mar-2008 |
yamt | sync with head.
|
1.9.16.2 |
| 03-Sep-2007 |
yamt | sync with head.
|
1.9.16.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
1.10.26.1 |
| 12-Mar-2007 |
rmind | Sync with HEAD.
|
1.11.40.1 |
| 03-Apr-2008 |
mjf | Sync with HEAD.
|
1.11.36.1 |
| 24-Mar-2008 |
keiichi | sync with head.
|
1.11.20.1 |
| 23-Mar-2008 |
matt | sync with HEAD
|
1.12.18.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.12.12.1 |
| 28-Apr-2009 |
skrll | Sync with HEAD.
|
1.12.4.1 |
| 04-May-2009 |
yamt | sync with head.
|
1.13.22.1 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.14.16.1 |
| 03-Jan-2021 |
thorpej | Sync w/ HEAD.
|