criu: __criu_check_feature()

thread-safety: s/exit()/_exit()/g Signed-off-by: 's avatarChristian Brauner <christian.brauner@ubuntu.com>
parent dfa7eaeb
...@@ -717,13 +717,13 @@ bool __criu_check_feature(uint64_t *features_to_check) ...@@ -717,13 +717,13 @@ bool __criu_check_feature(uint64_t *features_to_check)
* LXC checking only for 'uffd' makes not much sense. */ * LXC checking only for 'uffd' makes not much sense. */
args[3] = "uffd-noncoop"; args[3] = "uffd-noncoop";
else else
exit(1); _exit(EXIT_FAILURE);
null_stdfds(); null_stdfds();
execvp("criu", args); execvp("criu", args);
SYSERROR("Failed to exec \"criu\""); SYSERROR("Failed to exec \"criu\"");
exit(1); _exit(EXIT_FAILURE);
} }
ret = wait_for_pid(pid); ret = wait_for_pid(pid);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment