Files
nginx-unit/src/nxt_isolation.h
Alejandro Colomar 1c2f070ee2 Fixed include guard.
For consistency, use the same pattern as in the rest of the project.
2022-08-18 15:43:03 +02:00

19 lines
453 B
C

/*
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_ISOLATION_H_INCLUDED_
#define _NXT_ISOLATION_H_INCLUDED_
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_INCLUDED_ */