[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 04/23] bsd-user: Introduce freebsd/os-misc.h to the source tre
From: |
Karim Taha |
Subject: |
[PATCH v5 04/23] bsd-user: Introduce freebsd/os-misc.h to the source tree |
Date: |
Thu, 14 Sep 2023 23:40:48 +0300 |
From: Stacey Son <sson@FreeBSD.org>
To preserve the copyright notice and help with the 'Author' info for
subsequent changes to the file.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/freebsd/os-misc.h | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 bsd-user/freebsd/os-misc.h
diff --git a/bsd-user/freebsd/os-misc.h b/bsd-user/freebsd/os-misc.h
new file mode 100644
index 0000000000..8436ccb2f7
--- /dev/null
+++ b/bsd-user/freebsd/os-misc.h
@@ -0,0 +1,28 @@
+/*
+ * miscellaneous FreeBSD system call shims
+ *
+ * Copyright (c) 2013-14 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 OS_MISC_H
+#define OS_MISC_H
+
+#include <sys/cpuset.h>
+#include <sys/random.h>
+#include <sched.h>
+
+
+#endif /* OS_MISC_H */
--
2.42.0
- [PATCH v5 00/23] bsd-user: Implement mmap related system calls for FreeBSD., Karim Taha, 2023/09/14
- [PATCH v5 01/23] bsd-user: Implement struct target_ipc_perm, Karim Taha, 2023/09/14
- [PATCH v5 03/23] bsd-user: Declarations for ipc_perm and shmid_ds conversion functions, Karim Taha, 2023/09/14
- [PATCH v5 06/23] bsd-user: Implement shm_rename(2) system call, Karim Taha, 2023/09/14
- [PATCH v5 05/23] bsd-user: Implement shm_open2(2) system call, Karim Taha, 2023/09/14
- [PATCH v5 04/23] bsd-user: Introduce freebsd/os-misc.h to the source tree,
Karim Taha <=
- [PATCH v5 07/23] bsd-user: Add bsd-mem.c to meson.build, Karim Taha, 2023/09/14
- [PATCH v5 02/23] bsd-user: Implement struct target_shmid_ds, Karim Taha, 2023/09/14
- [PATCH v5 13/23] bsd-user: Implement mprotect(2), Karim Taha, 2023/09/14
- [PATCH v5 14/23] bsd-user: Implement msync(2), Karim Taha, 2023/09/14
- [PATCH v5 08/23] bsd-user: Implement target_set_brk function in bsd-mem.c instead of os-syscall.c, Karim Taha, 2023/09/14
- [PATCH v5 10/23] bsd-user: Implement shmid_ds conversion between host and target., Karim Taha, 2023/09/14
- [PATCH v5 11/23] bsd-user: Introduce bsd-mem.h to the source tree, Karim Taha, 2023/09/14
- [PATCH v5 12/23] bsd-user: Implement mmap(2) and munmap(2), Karim Taha, 2023/09/14
- [PATCH v5 18/23] bsd-user: Implement do_obreak function, Karim Taha, 2023/09/14