2 * BSD conversion extern declarations
4 * Copyright (c) 2013 Stacey D. Son
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.
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.
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/>.
23 #include <sys/types.h>
24 #include <sys/resource.h>
27 #include <sys/resource.h>
30 #include <sys/socket.h>
34 #include <netinet/in.h>
37 int target_to_host_resource(int code
);
38 rlim_t
target_to_host_rlim(abi_llong target_rlim
);
39 abi_llong
host_to_target_rlim(rlim_t rlim
);
40 abi_long
host_to_target_rusage(abi_ulong target_addr
,
41 const struct rusage
*rusage
);
42 abi_long
host_to_target_wrusage(abi_ulong target_addr
,
43 const struct __wrusage
*wrusage
);
44 int host_to_target_waitstatus(int status
);
45 void h2g_rusage(const struct rusage
*rusage
,
46 struct target_freebsd_rusage
*target_rusage
);
49 void target_to_host_ipc_perm__locked(struct ipc_perm
*host_ip
,
50 struct target_ipc_perm
*target_ip
);
51 void host_to_target_ipc_perm__locked(struct target_ipc_perm
*target_ip
,
52 struct ipc_perm
*host_ip
);
53 abi_long
target_to_host_shmid_ds(struct shmid_ds
*host_sd
,
54 abi_ulong target_addr
);
55 abi_long
host_to_target_shmid_ds(abi_ulong target_addr
,
56 struct shmid_ds
*host_sd
);
58 #endif /* QEMU_BSD_H */