From a1311a2332c11bc01188e517eb03bcc7cc3177e1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 10 Mar 2022 10:48:08 +0530 Subject: [PATCH] ... --- kitty/shm.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kitty/shm.py b/kitty/shm.py index 9008b0bf4..530a82223 100644 --- a/kitty/shm.py +++ b/kitty/shm.py @@ -33,9 +33,10 @@ def make_filename(prefix: str) -> str: class SharedMemory: ''' - Create or access randomly named shared memory. + Create or access randomly named shared memory. To create call with empty name and specific size. + To access call with name only. - WARNING: The actual size of the shared memory wmay be larger than the requested size. + WARNING: The actual size of the shared memory may be larger than the requested size. ''' _fd: int = -1 _name: str = ''