From e7ec4f64fb9a1743ee40e1a6fb9b5a9488d5a091 Mon Sep 17 00:00:00 2001 From: yellowhatter <104833606+yellowhatter@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:20:04 +0300 Subject: [PATCH] [skip ci] doc comment update Co-authored-by: Luca Cominardi --- commons/zenoh-shm/src/api/cleanup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons/zenoh-shm/src/api/cleanup.rs b/commons/zenoh-shm/src/api/cleanup.rs index df4e49dd6e..db6de74046 100644 --- a/commons/zenoh-shm/src/api/cleanup.rs +++ b/commons/zenoh-shm/src/api/cleanup.rs @@ -15,7 +15,7 @@ use crate::cleanup::CLEANUP; /// Make forced cleanup -/// NOTE: this is a part of ugly on-exit-cleanup workaround and will be removed +/// NOTE: this is a part of a temporary on-exit-cleanup workaround and it will be very likely removed in the future. /// In order to properly cleanup some SHM internals upon process exit, Zenoh installs exit handlers (see atexit() API). /// The bad thing is that atexit handler is executed only on process exit(), the terminating signal handlers (like SIGINT) /// bypass it and terminate the process without cleanup. To eliminate this effect, Zenoh overrides SIGHUP, SIGTERM, SIGINT