diff --git a/src/lib66/svc/deps-lib/deps b/src/lib66/svc/deps-lib/deps
index 2621aa492e142de4cddaa38ea1cc21de601a96da..09eaab4a21ee8ffaf08931de6bf349ac5885b423 100644
--- a/src/lib66/svc/deps-lib/deps
+++ b/src/lib66/svc/deps-lib/deps
@@ -1,6 +1,7 @@
 svc_scandir_ok.o
 svc_scandir_send.o
 svc_send.o
+svc_send_wait.o
 svc_unsupervise.o
 -ls6
 -loblibs
diff --git a/src/lib66/svc/svc_send_wait.c b/src/lib66/svc/svc_send_wait.c
new file mode 100644
index 0000000000000000000000000000000000000000..36e9e6b33309fa6bb7b382fbc71b8f684f0ae972
--- /dev/null
+++ b/src/lib66/svc/svc_send_wait.c
@@ -0,0 +1,60 @@
+/*
+ * svc_send_wait.c
+ *
+ * Copyright (c) 2018-2022 Eric Vidal <eric@obarun.org>
+ *
+ * All rights reserved.
+ *
+ * This file is part of Obarun. It is subject to the license terms in
+ * the LICENSE file found in the top-level directory of this
+ * distribution.
+ * This file may not be copied, modified, propagated, or distributed
+ * except according to the terms contained in the LICENSE file./
+ */
+
+#include <oblibs/log.h>
+
+#include <skalibs/djbunix.h>
+
+#include <66/svc.h>
+#include <66/resolve.h>
+#include <66/ssexec.h>
+
+int svc_send_wait(char const *const *list, unsigned int nservice, char **sig, unsigned int siglen, ssexec_t *info)
+{
+    log_flow() ;
+
+    pid_t pid ;
+    int wstat ;
+
+    int nargc = 5 + nservice + siglen + info->opt_color ;
+    char const *newargv[nargc] ;
+    unsigned int m = 0 ;
+    char verbo[UINT_FMT] ;
+    verbo[uint_fmt(verbo, VERBOSITY)] = 0 ;
+
+    newargv[m++] = "66" ;
+    newargv[m++] = "svctl" ;
+    if (info->opt_color)
+        newargv[m++] = "-z" ;
+    newargv[m++] = "-v" ;
+    newargv[m++] = verbo ;
+
+    for (; *sig ; sig++)
+        newargv[m++] = *sig ;
+
+    for (; *list ; list++)
+        newargv[m++] = *list ;
+
+    newargv[m++] = 0 ;
+
+    pid = child_spawn0(newargv[0], newargv, (char const *const *) environ) ;
+
+    if (waitpid_nointr(pid, &wstat, 0) < 0)
+        log_warnusys_return(LOG_EXIT_SYS, "wait for svctl") ;
+
+    if (wstat)
+        log_warnu_return(WIFSIGNALED(wstat) ? WTERMSIG(wstat) : WEXITSTATUS(wstat), "stop services selection") ;
+
+    return 0 ;
+}