qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] linux-user: move thunk.c to linux-user/


From: Laurent Vivier
Subject: [Qemu-devel] [PATCH] linux-user: move thunk.c to linux-user/
Date: Thu, 10 May 2018 11:29:35 +0200

thunk.c is part of linux-user and only used by it,
so move it to the linux-user directory.

Signed-off-by: Laurent Vivier <address@hidden>
---
 Makefile.target               | 2 +-
 linux-user/Makefile.objs      | 2 +-
 thunk.c => linux-user/thunk.c | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename thunk.c => linux-user/thunk.c (100%)

diff --git a/Makefile.target b/Makefile.target
index d0ec77a307..98f25c91c7 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -112,7 +112,7 @@ QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
              -I$(SRC_PATH)/linux-user
 
 obj-y += linux-user/
-obj-y += gdbstub.o thunk.o
+obj-y += gdbstub.o
 
 endif #CONFIG_LINUX_USER
 
diff --git a/linux-user/Makefile.objs b/linux-user/Makefile.objs
index 59a5c17354..1fc1dd2762 100644
--- a/linux-user/Makefile.objs
+++ b/linux-user/Makefile.objs
@@ -1,7 +1,7 @@
 obj-y = main.o syscall.o strace.o mmap.o signal.o \
        elfload.o linuxload.o uaccess.o uname.o \
        safe-syscall.o $(TARGET_ABI_DIR)/signal.o \
-        $(TARGET_ABI_DIR)/cpu_loop.o
+        $(TARGET_ABI_DIR)/cpu_loop.o thunk.o
 
 obj-$(TARGET_HAS_BFLT) += flatload.o
 obj-$(TARGET_I386) += vm86.o
diff --git a/thunk.c b/linux-user/thunk.c
similarity index 100%
rename from thunk.c
rename to linux-user/thunk.c
-- 
2.14.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]