current_id, registry_id, and ShmPool are atomic

This commit is contained in:
2025-05-06 11:57:35 -07:00
parent cbe54334ca
commit 375b44beee
7 changed files with 73 additions and 101 deletions

View File

@@ -87,3 +87,6 @@ impl Drop for ShmPool {
unsafe { munmap(self.addr, self.size); }
}
}
unsafe impl Send for ShmPool {}
unsafe impl Sync for ShmPool {}