summaryrefslogtreecommitdiff
path: root/emulators/qemu/files/patch-be
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu/files/patch-be')
-rw-r--r--emulators/qemu/files/patch-be19
1 files changed, 0 insertions, 19 deletions
diff --git a/emulators/qemu/files/patch-be b/emulators/qemu/files/patch-be
deleted file mode 100644
index a8a5ba663df3..000000000000
--- a/emulators/qemu/files/patch-be
+++ /dev/null
@@ -1,19 +0,0 @@
-Index: qemu/vl.c
-@@ -541,7 +541,7 @@
- static void init_get_clock(void)
- {
- use_rt_clock = 0;
--#if defined(__linux__)
-+#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
- {
- struct timespec ts;
- if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
-@@ -553,7 +553,7 @@
-
- static int64_t get_clock(void)
- {
--#if defined(__linux__)
-+#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
- if (use_rt_clock) {
- struct timespec ts;
- clock_gettime(CLOCK_MONOTONIC, &ts);