]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/bsd-proc.c
bsd-user: Implement target_to_host_rlim and host_to_target_rlim conversion.
[mirror_qemu.git] / bsd-user / bsd-proc.c
CommitLineData
0caa3768
SS
1/*
2 * BSD process related system call helpers
3 *
4 * Copyright (c) 2013-14 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#include "qemu/osdep.h"
20
21#include <sys/param.h>
22#include <sys/types.h>
23#include <sys/cpuset.h>
24#include <sys/resource.h>
25#include <sys/wait.h>
26
27#include "qemu.h"
28#include "qemu-bsd.h"
29#include "signal-common.h"
30
31#include "bsd-proc.h"
32
33/*
34 * resource/rusage conversion
35 */
36int target_to_host_resource(int code)
37{
38 return code;
39}
40
550fc701
SS
41rlim_t target_to_host_rlim(abi_llong target_rlim)
42{
43 return tswap64(target_rlim);
44}
45
46abi_llong host_to_target_rlim(rlim_t rlim)
47{
48 return tswap64(rlim);
49}
50