procd: replace exit(-1) with exit(EXIT_FAILURE)
[project/procd.git] / initd / init.c
index 29eee5050cf969a98470c5dad46a03a8f68434f7..9b4782608e1a7a9f411eaacfa9b97b2d6b3fe89c 100644 (file)
@@ -92,17 +92,18 @@ main(int argc, char **argv)
 
                execvp(kmod[0], kmod);
                ERROR("Failed to start kmodloader: %m\n");
-               exit(-1);
+               exit(EXIT_FAILURE);
        }
        if (pid <= 0) {
                ERROR("Failed to start kmodloader instance: %m\n");
        } else {
+               const struct timespec req = {0, 10 * 1000 * 1000};
                int i;
 
                for (i = 0; i < 1200; i++) {
                        if (waitpid(pid, NULL, WNOHANG) > 0)
                                break;
-                       usleep(10 * 1000);
+                       nanosleep(&req, NULL);
                        watchdog_ping();
                }
        }