[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/14] bsd-user: export get_errno and is_error from syscall.c
From: |
Warner Losh |
Subject: |
[PATCH 04/14] bsd-user: export get_errno and is_error from syscall.c |
Date: |
Wed, 22 Sep 2021 00:14:28 -0600 |
Make get_errno and is_error global so files other than syscall.c can use
them.
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/qemu.h | 4 ++++
bsd-user/syscall.c | 10 +++++-----
2 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 522d6c4031..22fc3a6c30 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -235,6 +235,10 @@ extern unsigned long target_dflssiz;
extern unsigned long target_maxssiz;
extern unsigned long target_sgrowsiz;
+/* syscall.c */
+abi_long get_errno(abi_long ret);
+int is_error(abi_long ret);
+
/* user access */
#define VERIFY_READ PAGE_READ
diff --git a/bsd-user/syscall.c b/bsd-user/syscall.c
index 372836d44d..a579d52ede 100644
--- a/bsd-user/syscall.c
+++ b/bsd-user/syscall.c
@@ -33,18 +33,18 @@
static abi_ulong target_brk;
static abi_ulong target_original_brk;
-static inline abi_long get_errno(abi_long ret)
+abi_long get_errno(abi_long ret)
{
- if (ret == -1)
+ if (ret == -1) {
/* XXX need to translate host -> target errnos here */
return -(errno);
- else
- return ret;
+ }
+ return ret;
}
#define target_to_host_bitmask(x, tbl) (x)
-static inline int is_error(abi_long ret)
+int is_error(abi_long ret)
{
return (abi_ulong)ret >= (abi_ulong)(-4096);
}
--
2.32.0
- [PATCH 00/14] bsd-user: misc cleanup for aarch64 import, Warner Losh, 2021/09/22
- [PATCH 01/14] bsd-user/target_os-user.h: Remove support for FreeBSD older than 12.0, Warner Losh, 2021/09/22
- [PATCH 02/14] bsd-user/strace.list: Remove support for FreeBSD versions older than 12.0, Warner Losh, 2021/09/22
- [PATCH 05/14] bsd-user/errno_defs.h: Add internal error numbers, Warner Losh, 2021/09/22
- [PATCH 07/14] bsd-user/target_os_elf.h: Remove fallback ELF_HWCAP and reorder, Warner Losh, 2021/09/22
- [PATCH 04/14] bsd-user: export get_errno and is_error from syscall.c,
Warner Losh <=
- [PATCH 09/14] bsd-user: Remove used from TaskState, Warner Losh, 2021/09/22
- [PATCH 13/14] bsd-user: Rename sigqueue to qemu_sigqueue, Warner Losh, 2021/09/22
- [PATCH 10/14] bsd-user: Add stop_all_tasks, Warner Losh, 2021/09/22