Fix: sessiond write() to handle EINTR
[lttng-tools.git] / src / bin / lttng-sessiond / main.c
index 477a9413b71692d8630572dc8ab6de49b5534bad..184ac6be62de3c5667d06c126eb373aa3ce1d1d6 100644 (file)
@@ -1326,8 +1326,10 @@ static void *thread_dispatch_ust_registration(void *data)
                         * at some point in time or wait to the end of the world :)
                         */
                        if (apps_cmd_pipe[1] >= 0) {
-                               ret = write(apps_cmd_pipe[1], ust_cmd,
-                                               sizeof(struct ust_command));
+                               do {
+                                       ret = write(apps_cmd_pipe[1], ust_cmd,
+                                                       sizeof(struct ust_command));
+                               } while (ret < 0 && errno == EINTR);
                                if (ret < 0) {
                                        PERROR("write apps cmd pipe");
                                        if (errno == EBADF) {
This page took 0.023944 seconds and 4 git commands to generate.