diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-08-23 07:05:30 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-08-23 07:05:30 +0000 |
commit | e85fc365932b27d6b39b23ce8e32cfdaecf05cd3 (patch) | |
tree | fb2dd195b08bb7bb15ecb5ae16b1d75d3bd17044 | |
parent | d8e1574e33261032445be0776e4965bd8293e30f (diff) |
Allow userland to use EVFILT_EXCEPT.
ok mvs@, visa@
-rw-r--r-- | sys/sys/event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h index 4a46d97af72..fefbfccad11 100644 --- a/sys/sys/event.h +++ b/sys/sys/event.h @@ -1,4 +1,4 @@ -/* $OpenBSD: event.h,v 1.44 2020/06/22 13:14:32 mpi Exp $ */ +/* $OpenBSD: event.h,v 1.45 2020/08/23 07:05:29 mpi Exp $ */ /*- * Copyright (c) 1999,2000,2001 Jonathan Lemon <jlemon@FreeBSD.org> @@ -41,7 +41,7 @@ #define EVFILT_DEVICE (-8) /* devices */ #define EVFILT_EXCEPT (-9) /* exceptional conditions */ -#define EVFILT_SYSCOUNT 8 +#define EVFILT_SYSCOUNT 9 #define EV_SET(kevp, a, b, c, d, e, f) do { \ struct kevent *__kevp = (kevp); \ |