repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge remote-tracking branch 'remotes/rth/tags/pull-nios-20170124' into staging
[qemu/ar7.git]
/
stubs
/
set-fd-handler.c
blob
acbe65c1da7f94e0802467467acf11d0b6d975f4
1
#include
"qemu/osdep.h"
2
#include
"qemu-common.h"
3
#include
"qemu/main-loop.h"
4
5
void
qemu_set_fd_handler
(
int
fd
,
6
IOHandler
*
fd_read
,
7
IOHandler
*
fd_write
,
8
void
*
opaque
)
9
{
10
abort
();
11
}
12
13
void
aio_set_fd_handler
(
AioContext
*
ctx
,
14
int
fd
,
15
bool
is_external
,
16
IOHandler
*
io_read
,
17
IOHandler
*
io_write
,
18
AioPollFn
*
io_poll
,
19
void
*
opaque
)
20
{
21
abort
();
22
}