qemu-bsd.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. #ifndef QEMU_BSD_H
  20. #define QEMU_BSD_H
  21. #include <sys/types.h>
  22. #include <sys/resource.h>
  23. #include <sys/ipc.h>
  24. #include <sys/msg.h>
  25. #include <sys/resource.h>
  26. #include <sys/sem.h>
  27. #include <sys/shm.h>
  28. #include <sys/socket.h>
  29. #include <sys/un.h>
  30. #include <sys/uuid.h>
  31. #include <sys/wait.h>
  32. #include <netinet/in.h>
  33. /* bsd-proc.c */
  34. int target_to_host_resource(int code);
  35. rlim_t target_to_host_rlim(abi_llong target_rlim);
  36. abi_llong host_to_target_rlim(rlim_t rlim);
  37. abi_long host_to_target_rusage(abi_ulong target_addr,
  38. const struct rusage *rusage);
  39. abi_long host_to_target_wrusage(abi_ulong target_addr,
  40. const struct __wrusage *wrusage);
  41. int host_to_target_waitstatus(int status);
  42. void h2g_rusage(const struct rusage *rusage,
  43. struct target_freebsd_rusage *target_rusage);
  44. /* bsd-mem.c */
  45. void target_to_host_ipc_perm__locked(struct ipc_perm *host_ip,
  46. struct target_ipc_perm *target_ip);
  47. void host_to_target_ipc_perm__locked(struct target_ipc_perm *target_ip,
  48. struct ipc_perm *host_ip);
  49. abi_long target_to_host_shmid_ds(struct shmid_ds *host_sd,
  50. abi_ulong target_addr);
  51. abi_long host_to_target_shmid_ds(abi_ulong target_addr,
  52. struct shmid_ds *host_sd);
  53. #endif /* QEMU_BSD_H */