2011-05-13 04:54:01 +00:00
|
|
|
/*-
|
2017-11-27 15:37:16 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2011-05-13 04:54:01 +00:00
|
|
|
* Copyright (c) 2011 NetApp, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MEVENT_H_
|
|
|
|
#define _MEVENT_H_
|
|
|
|
|
|
|
|
enum ev_type {
|
|
|
|
EVF_READ,
|
2013-09-19 04:48:26 +00:00
|
|
|
EVF_WRITE,
|
2013-12-28 04:01:05 +00:00
|
|
|
EVF_TIMER,
|
2021-06-12 00:59:13 +00:00
|
|
|
EVF_SIGNAL,
|
|
|
|
EVF_VNODE,
|
2011-05-13 04:54:01 +00:00
|
|
|
};
|
|
|
|
|
2021-06-12 00:59:13 +00:00
|
|
|
/* Filter flags for EVF_VNODE */
|
|
|
|
#define EVFF_ATTRIB 0x0001
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
struct mevent;
|
|
|
|
|
2021-12-26 07:52:38 +00:00
|
|
|
struct mevent *mevent_add(int fd, enum ev_type type,
|
2011-05-13 04:54:01 +00:00
|
|
|
void (*func)(int, enum ev_type, void *),
|
|
|
|
void *param);
|
2021-06-12 00:59:13 +00:00
|
|
|
struct mevent *mevent_add_flags(int fd, enum ev_type type, int fflags,
|
|
|
|
void (*func)(int, enum ev_type, void *),
|
|
|
|
void *param);
|
2019-11-03 19:02:32 +00:00
|
|
|
struct mevent *mevent_add_disabled(int fd, enum ev_type type,
|
|
|
|
void (*func)(int, enum ev_type, void *),
|
|
|
|
void *param);
|
2011-05-13 04:54:01 +00:00
|
|
|
int mevent_enable(struct mevent *evp);
|
|
|
|
int mevent_disable(struct mevent *evp);
|
|
|
|
int mevent_delete(struct mevent *evp);
|
|
|
|
int mevent_delete_close(struct mevent *evp);
|
|
|
|
|
|
|
|
void mevent_dispatch(void);
|
|
|
|
|
|
|
|
#endif /* _MEVENT_H_ */
|