about summary refs log tree commit diff
path: root/pkgs/games/build-support/build-sandbox/src/setup.h
blob: 19cc6ca257a46606a021dcbb7156a0855abfbfd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _SETUP_H
#define _SETUP_H

#include <stdbool.h>
#include <sys/types.h>

bool write_maps(pid_t parent_pid);
bool bind_mount(const char *path, bool restricted, bool resolve);
bool extra_mount(const char *path);
bool setup_sandbox(void);

#endif