void *opaque;
};
+void qemu_service_io(void)
+{
+}
+
void term_printf(const char *fmt, ...)
{
}
int64_t qemu_get_clock(QEMUClock *clock)
{
- struct timeval tv;
- gettimeofday(&tv, NULL);
+ qemu_timeval tv;
+ qemu_gettimeofday(&tv);
return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000;
}