On 8/27/23 08:57, Karim Taha wrote:
From: Stacey Son <s...@freebsd.org>
Signed-off-by: Stacey Son <s...@freebsd.org>
Signed-off-by: Karim Taha <kariem.taha...@gmail.com>
---
bsd-user/freebsd/os-proc.h | 23 +++++++++++++++++++++++
bsd-user/freebsd/os-syscall.c | 8 ++++++++
2 files changed, 31 insertions(+)
Reviewed-by: Richard Henderson <richard.hender...@linaro.org>
+/* undocumented __setugid */
+static inline abi_long do_freebsd___setugid(abi_long arg1)
+{
+ return get_errno(__setugid(arg1));
+}
Given that this is
#ifdef REGRESSION
...
#else /* !REGRESSION */
return (ENOSYS);
#endif /* REGRESSION */
in current freebsd, we could probably just stub this out?
r~