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> 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> 35 36 /* bsd-proc.c */ 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); 47 48 /* bsd-mem.c */ 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); 57 58 #endif /* QEMU_BSD_H */ 59