summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_isolation.h
blob: 88a5f9e121ace66e956d3d985b895672d658acf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (C) NGINX, Inc.
 */

#ifndef _NXT_ISOLATION_H_
#define _NXT_ISOLATION_H_


nxt_int_t nxt_isolation_main_prefork(nxt_task_t *task, nxt_process_t *process,
    nxt_mp_t *mp);

#if (NXT_HAVE_ISOLATION_ROOTFS)
nxt_int_t nxt_isolation_prepare_rootfs(nxt_task_t *task,
    nxt_process_t *process);
nxt_int_t nxt_isolation_change_root(nxt_task_t *task, nxt_process_t *process);
#endif

#endif /* _NXT_ISOLATION_H_ */