]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/freebsd/os-proc.h
bsd-user: Implement execve(2) and fexecve(2) system calls.
[mirror_qemu.git] / bsd-user / freebsd / os-proc.h
CommitLineData
36999e6a
KT
1/*
2 * process related system call shims and definitions
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
20#ifndef BSD_USER_FREEBSD_OS_PROC_H
21#define BSD_USER_FREEBSD_OS_PROC_H
22
23#include <sys/param.h>
24#include <sys/procctl.h>
25#include <sys/signal.h>
26#include <sys/types.h>
27#include <sys/procdesc.h>
28#include <sys/wait.h>
29#include <unistd.h>
30
31#include "target_arch_cpu.h"
32
33/* execve(2) */
34static inline abi_long do_freebsd_execve(abi_ulong path_or_fd, abi_ulong argp,
35 abi_ulong envp)
36{
37
38 return freebsd_exec_common(path_or_fd, argp, envp, 0);
39}
40
41/* fexecve(2) */
42static inline abi_long do_freebsd_fexecve(abi_ulong path_or_fd, abi_ulong argp,
43 abi_ulong envp)
44{
45
46 return freebsd_exec_common(path_or_fd, argp, envp, 1);
47}
48
49#endif /* BSD_USER_FREEBSD_OS_PROC_H */