]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/qemu-bsd.h
Merge tag 'pull-error-2023-11-17' of https://repo.or.cz/qemu/armbru into staging
[mirror_qemu.git] / bsd-user / qemu-bsd.h
CommitLineData
00bff01f
SS
1/*
2 * BSD conversion extern declarations
3 *
4 * Copyright (c) 2013 Stacey D. Son
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef QEMU_BSD_H
21#define QEMU_BSD_H
22
23#include <sys/types.h>
24#include <sys/resource.h>
1d4c4026
SS
25#include <sys/ipc.h>
26#include <sys/msg.h>
27#include <sys/resource.h>
28#include <sys/sem.h>
29#include <sys/shm.h>
30#include <sys/socket.h>
31#include <sys/un.h>
32#include <sys/uuid.h>
33#include <sys/wait.h>
34#include <netinet/in.h>
00bff01f
SS
35
36/* bsd-proc.c */
37int target_to_host_resource(int code);
38rlim_t target_to_host_rlim(abi_llong target_rlim);
39abi_llong host_to_target_rlim(rlim_t rlim);
40abi_long host_to_target_rusage(abi_ulong target_addr,
41 const struct rusage *rusage);
42abi_long host_to_target_wrusage(abi_ulong target_addr,
43 const struct __wrusage *wrusage);
44int host_to_target_waitstatus(int status);
45void h2g_rusage(const struct rusage *rusage,
46 struct target_freebsd_rusage *target_rusage);
47
1d4c4026
SS
48/* bsd-mem.c */
49void target_to_host_ipc_perm__locked(struct ipc_perm *host_ip,
50 struct target_ipc_perm *target_ip);
51void host_to_target_ipc_perm__locked(struct target_ipc_perm *target_ip,
52 struct ipc_perm *host_ip);
53abi_long target_to_host_shmid_ds(struct shmid_ds *host_sd,
54 abi_ulong target_addr);
55abi_long host_to_target_shmid_ds(abi_ulong target_addr,
56 struct shmid_ds *host_sd);
57
00bff01f 58#endif /* QEMU_BSD_H */