aboutsummaryrefslogtreecommitdiff
path: root/linux-user/safe-syscall.S
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-07-08 19:05:45 +0200
committerLaurent Vivier <laurent@vivier.eu>2021-07-12 21:53:35 +0200
commit8f968b6a24aec7de8b1a1b4d2de922adad689297 (patch)
tree672c47e157f30ffd9ae8cb26b5a07a4d58b55885 /linux-user/safe-syscall.S
parentf007472331068f35e1cf3dca9adb87a4c1df59e8 (diff)
linux-user: Extract target errno to 'target_errno_defs.h'
We want to access the target errno indepently of the rest of the linux-user code. Move the header containing the generic errno definitions ('errno_defs.h') to 'generic/target_errno_defs.h', create a new 'target_errno_defs.h' in each target which itself includes 'generic/target_errno_defs.h'. Suggested-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210708170550.1846343-4-f4bug@amsat.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/safe-syscall.S')
-rw-r--r--linux-user/safe-syscall.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/safe-syscall.S b/linux-user/safe-syscall.S
index b5df6254ae..42ea7c40ba 100644
--- a/linux-user/safe-syscall.S
+++ b/linux-user/safe-syscall.S
@@ -11,7 +11,7 @@
*/
#include "hostdep.h"
-#include "errno_defs.h"
+#include "target_errno_defs.h"
/* We have the correct host directory on our include path
* so that this will pull in the right fragment for the architecture.