Fix: get_wait_shm() ust mutex deadlock
[lttng-ust.git] / liblttng-ust / lttng-ust-comm.c
index be64acd01d03e6b730cec0403a4edda21fbd90ac..596fd7dfbee9f566e76a9ed11adb00d744caa7e8 100644 (file)
@@ -616,9 +616,9 @@ int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
                        ret = ftruncate(wait_shm_fd, mmap_size);
                        if (ret) {
                                PERROR("ftruncate");
-                               exit(EXIT_FAILURE);
+                               _exit(EXIT_FAILURE);
                        }
-                       exit(EXIT_SUCCESS);
+                       _exit(EXIT_SUCCESS);
                }
                /*
                 * For local shm, we need to have rw access to accept
This page took 0.023137 seconds and 4 git commands to generate.