diff options
-rw-r--r-- | emulators/kqemu-kmod-devel/Makefile | 2 | ||||
-rw-r--r-- | emulators/kqemu-kmod-devel/files/patch-kqemu-timeout | 25 |
2 files changed, 26 insertions, 1 deletions
diff --git a/emulators/kqemu-kmod-devel/Makefile b/emulators/kqemu-kmod-devel/Makefile index 8f9873a3dcdb..3eb03947eb41 100644 --- a/emulators/kqemu-kmod-devel/Makefile +++ b/emulators/kqemu-kmod-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= kqemu PORTVERSION= 1.4.0.p1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators kld MASTER_SITES= http://bellard.org/qemu/ \ http://qemu.org/ \ diff --git a/emulators/kqemu-kmod-devel/files/patch-kqemu-timeout b/emulators/kqemu-kmod-devel/files/patch-kqemu-timeout new file mode 100644 index 000000000000..ed53e1a18b69 --- /dev/null +++ b/emulators/kqemu-kmod-devel/files/patch-kqemu-timeout @@ -0,0 +1,25 @@ +Index: common/kernel.c +@@ -1079,6 +1079,10 @@ long kqemu_exec(struct kqemu_state *s) + uint16_t saved_ds, saved_es; + unsigned long fs_base, gs_base; + #endif ++#if defined(__FreeBSD__) ++ extern int ticks; ++ int tstart = ticks; ++#endif + + #ifdef PROFILE + s->nb_profile_ts = 0; +@@ -1252,7 +1256,11 @@ long kqemu_exec(struct kqemu_state *s) + /* if interrupting user code, we schedule to give time + to the other processes. We can be interrupted by a + signal a that case. */ +- if (kqemu_schedule()) { ++ if (kqemu_schedule() ++#if defined(__FreeBSD__) ++ || ticks - tstart > 1 ++#endif ++ ) { + restore_cpu_state_from_regs(s, r); + ret = KQEMU_RET_INTR; + break; |