aboutsummaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-be
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu-devel/files/patch-be')
-rw-r--r--emulators/qemu-devel/files/patch-be16
1 files changed, 0 insertions, 16 deletions
diff --git a/emulators/qemu-devel/files/patch-be b/emulators/qemu-devel/files/patch-be
deleted file mode 100644
index 6de47db9eaf9..000000000000
--- a/emulators/qemu-devel/files/patch-be
+++ /dev/null
@@ -1,16 +0,0 @@
-Index: qemu/vl.c
-@@ -662,6 +662,14 @@
- case QEMU_TIMER_REALTIME:
- #ifdef _WIN32
- return GetTickCount();
-+#elif defined(_BSD)
-+ {
-+ struct timeval r;
-+ if (!gettimeofday(&r, NULL)) {
-+ return ((timer_freq * 1000LL) * (int64_t)r.tv_sec
-+ + ((int64_t)r.tv_usec * timer_freq) / 1000) / timer_freq;
-+ }
-+ }
- #else
- {
- struct tms tp;