interprocess icon indicating copy to clipboard operation
interprocess copied to clipboard

Handle EINTR in shared_memory_object

Open Lastique opened this issue 4 years ago • 0 comments

As documented, shm_open may return EINTR if interrupted by a signal. This error code is not specially handled in shared_memory_object::priv_open_or_create and will result in an exception being thrown. It would be better if the shm_open call was attempted again internally by shared_memory_object without an exception.

Lastique avatar Sep 15 '21 12:09 Lastique