diff options
-rw-r--r-- | exec-all.h | 2 | ||||
-rw-r--r-- | vl.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/exec-all.h b/exec-all.h index 2efccfe98..d98b91d3f 100644 --- a/exec-all.h +++ b/exec-all.h @@ -19,7 +19,7 @@ */ /* allow to see translation results - the slowdown should be negligible, so we leave it */ -//#define DEBUG_DISAS +#define DEBUG_DISAS /* is_jmp field values */ #define DISAS_NEXT 0 /* next instruction can be analyzed */ @@ -4030,7 +4030,6 @@ static TAPState *net_tap_fd_init(VLANState *vlan, int fd) if (!s) return NULL; s->fd = fd; - enable_sigio_timer(fd); s->vc = qemu_new_vlan_client(vlan, tap_receive, NULL, s); qemu_set_fd_handler(s->fd, tap_send, NULL, s); snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: fd=%d", fd); |