Cross Reference: ioloop-notify-none.c
xref
: /
dovecot
/
src
/
lib
/
ioloop-notify-none.c
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
ioloop-notify-none.c revision f6845101f2d6b8068e352a0b5a0d4bb04e20ad74
2
N/A
/* Copyright (c) 2003-2015 Dovecot authors, see the included COPYING file */
2
N/A
2
N/A
#
include
"
lib.h
"
2
N/A
#
include
"
ioloop-private.h
"
2
N/A
2
N/A
#
ifdef
IOLOOP_NOTIFY_NONE
2
N/A
2
N/A
#
undef
io_add_notify
2
N/A
enum
io_notify_result
2
N/A
io_add_notify
(
const
char
*
path
ATTR_UNUSED
,
2
N/A
unsigned
int
source_linenum
ATTR_UNUSED
,
2
N/A
io_callback_t
*
callback
ATTR_UNUSED
,
2
N/A
void
*
context
ATTR_UNUSED
,
struct
io
**
io_r
)
2
N/A
{
2
N/A
*
io_r
=
NULL
;
2
N/A
return
IO_NOTIFY_NOSUPPORT
;
2
N/A
}
2
N/A
2
N/A
void
io_loop_notify_remove
(
struct
io
*
io
ATTR_UNUSED
)
2
N/A
{
2
N/A
}
2
N/A
2
N/A
void
io_loop_notify_handler_deinit
(
struct
ioloop
*
ioloop
ATTR_UNUSED
)
2
N/A
{
2
N/A
}
2
N/A
2
N/A
#
endif
2
N/A