]> git.proxmox.com Git - mirror_qemu.git/blob - bsd-user/qemu-bsd.h
bsd-user: Implement pdgetpid(2) and the undocumented setugid.
[mirror_qemu.git] / bsd-user / qemu-bsd.h
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
26 /* bsd-proc.c */
27 int target_to_host_resource(int code);
28 rlim_t target_to_host_rlim(abi_llong target_rlim);
29 abi_llong host_to_target_rlim(rlim_t rlim);
30 abi_long host_to_target_rusage(abi_ulong target_addr,
31 const struct rusage *rusage);
32 abi_long host_to_target_wrusage(abi_ulong target_addr,
33 const struct __wrusage *wrusage);
34 int host_to_target_waitstatus(int status);
35 void h2g_rusage(const struct rusage *rusage,
36 struct target_freebsd_rusage *target_rusage);
37
38 #endif /* QEMU_BSD_H */