aboutsummaryrefslogtreecommitdiff
path: root/bsd-user/bsd-proc.h
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-01-31 17:03:30 -0700
committerWarner Losh <imp@bsdimp.com>2022-06-10 22:03:50 -0600
commit9554d33076771dcc284dc3fa1a87cd0e24b91d9d (patch)
treee30fa5258cd6ae6f481ed91907555205aadc2a35 /bsd-user/bsd-proc.h
parent770d8abae736535c9bff17ee82bd48aea0e5fea4 (diff)
downloadqemu-9554d33076771dcc284dc3fa1a87cd0e24b91d9d.zip
qemu-9554d33076771dcc284dc3fa1a87cd0e24b91d9d.tar.gz
qemu-9554d33076771dcc284dc3fa1a87cd0e24b91d9d.tar.bz2
bsd-user/freebsd/os-syscall.c: Implement exit
Implement the exit system call. Bring in bsd-proc.h to contain all the process system call implementation and helper routines. Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Kyle Evans <kevans@FreeBSD.org>
Diffstat (limited to 'bsd-user/bsd-proc.h')
-rw-r--r--bsd-user/bsd-proc.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/bsd-user/bsd-proc.h b/bsd-user/bsd-proc.h
new file mode 100644
index 0000000..68b66e5
--- /dev/null
+++ b/bsd-user/bsd-proc.h
@@ -0,0 +1,42 @@
+/*
+ * process related system call shims and definitions
+ *
+ * Copyright (c) 2013-2014 Stacey D. Son
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef BSD_PROC_H_
+#define BSD_PROC_H_
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+#include <sys/resource.h>
+#include <unistd.h>
+
+/* exit(2) */
+static inline abi_long do_bsd_exit(void *cpu_env, abi_long arg1)
+{
+#ifdef TARGET_GPROF
+ _mcleanup();
+#endif
+ gdb_exit(arg1);
+ qemu_plugin_user_exit();
+ _exit(arg1);
+
+ return 0;
+}
+
+#endif /* !BSD_PROC_H_ */