xref: /unit/src/nxt_clone.h (revision 1182:325b315e48c4)
1 /*
2  * Copyright (C) Igor Sysoev
3  * Copyright (C) NGINX, Inc.
4  */
5 
6 #ifndef _NXT_CLONE_INCLUDED_
7 #define _NXT_CLONE_INCLUDED_
8 
9 
10 pid_t nxt_clone(nxt_int_t flags);
11 
12 #if (NXT_HAVE_CLONE_NEWUSER)
13 nxt_int_t nxt_clone_proc_map(nxt_task_t *task, pid_t pid,
14         nxt_process_clone_t *clone);
15 #endif
16 
17 #endif /* _NXT_CLONE_INCLUDED_ */
18