xref: /freebsd/lib/libnetbsd/sys/event.h (revision 42b388439bd3795e09258c57a74ce9eec3651c7b)
18a979e7aSEnji Cooper /*-
28a979e7aSEnji Cooper  * Copyright (c) 2017 Dell, Inc.
38a979e7aSEnji Cooper  * All rights reserved.
48a979e7aSEnji Cooper  *
58a979e7aSEnji Cooper  * Redistribution and use in source and binary forms, with or without
68a979e7aSEnji Cooper  * modification, are permitted provided that the following conditions are met:
78a979e7aSEnji Cooper  *
88a979e7aSEnji Cooper  * 1. Redistributions of source code must retain the above copyright notice,
98a979e7aSEnji Cooper  * this list of conditions and the following disclaimer.
108a979e7aSEnji Cooper  *
118a979e7aSEnji Cooper  * 2. Redistributions in binary form must reproduce the above copyright notice,
128a979e7aSEnji Cooper  * this list of conditions and the following disclaimer in the documentation
138a979e7aSEnji Cooper  * and/or other materials provided with the distribution.
148a979e7aSEnji Cooper  *
158a979e7aSEnji Cooper  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
168a979e7aSEnji Cooper  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
178a979e7aSEnji Cooper  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
188a979e7aSEnji Cooper  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
198a979e7aSEnji Cooper  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
208a979e7aSEnji Cooper  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
218a979e7aSEnji Cooper  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
228a979e7aSEnji Cooper  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
238a979e7aSEnji Cooper  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
248a979e7aSEnji Cooper  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
258a979e7aSEnji Cooper  * SUCH DAMAGE.
268a979e7aSEnji Cooper  *
278a979e7aSEnji Cooper  */
288a979e7aSEnji Cooper 
298a979e7aSEnji Cooper #ifndef _LIBNETBSD_SYS_EVENT_H_
308a979e7aSEnji Cooper #define	_LIBNETBSD_SYS_EVENT_H_
318a979e7aSEnji Cooper 
328a979e7aSEnji Cooper /*
338a979e7aSEnji Cooper  * kqueue on FreeBSD requires sys/event.h, which in turn uses uintptr_t
34*49f2bb36SGordon Bergling  * (defined in sys/types.h), so in order to accommodate their requirements,
358a979e7aSEnji Cooper  * pull in sys/types.h as part of event.h.
368a979e7aSEnji Cooper  */
378a979e7aSEnji Cooper #include <sys/types.h>
388a979e7aSEnji Cooper 
398a979e7aSEnji Cooper #include_next <sys/event.h>
408a979e7aSEnji Cooper 
418a979e7aSEnji Cooper #endif
42