diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2022-11-19 02:27:22 +0000 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2022-11-19 02:27:22 +0000 |
commit | b9c1a2977b161e6befbc1fa770f6fe482ea3e9ca (patch) | |
tree | b55b92b69b22ee4d5bb109cb452beb80c4f6b0b6 /src | |
parent | c1299faa7d2990acbeb677dfc036ca5179d2bf54 (diff) | |
download | unit-b9c1a2977b161e6befbc1fa770f6fe482ea3e9ca.tar.gz unit-b9c1a2977b161e6befbc1fa770f6fe482ea3e9ca.tar.bz2 |
Isolation: Remove nxt_clone().
Since the previous commit, this is no longer used.
Reviewed-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/nxt_clone.c | 14 | ||||
-rw-r--r-- | src/nxt_clone.h | 3 |
2 files changed, 0 insertions, 17 deletions
diff --git a/src/nxt_clone.c b/src/nxt_clone.c index a98aac47..1cd70f6c 100644 --- a/src/nxt_clone.c +++ b/src/nxt_clone.c @@ -8,20 +8,6 @@ #include <nxt_conf.h> #include <nxt_clone.h> -#if (NXT_HAVE_LINUX_NS) - -pid_t -nxt_clone(nxt_int_t flags) -{ -#if defined(__s390x__) || defined(__s390__) || defined(__CRIS__) - return syscall(SYS_clone, NULL, flags); -#else - return syscall(SYS_clone, flags, NULL); -#endif -} - -#endif - #if (NXT_HAVE_CLONE_NEWUSER) diff --git a/src/nxt_clone.h b/src/nxt_clone.h index c2066ce6..6cea1bd7 100644 --- a/src/nxt_clone.h +++ b/src/nxt_clone.h @@ -33,9 +33,6 @@ typedef struct { } nxt_clone_t; -pid_t nxt_clone(nxt_int_t flags); - - #define nxt_is_clone_flag_set(flags, test) \ ((flags & CLONE_##test) == CLONE_##test) |