/* SPDX-License-Identifier: GPL-2.0-only */12/**3* DOC: erratum_24*5* Erratum 2: Scoped signal handling6* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~7*8* This fix addresses an issue where signal scoping was overly restrictive,9* preventing sandboxed threads from signaling other threads within the same10* process if they belonged to different domains. Because threads are not11* security boundaries, user space might assume that any thread within the same12* process can send signals between themselves (see :manpage:`nptl(7)` and13* :manpage:`libpsx(3)`). Consistent with :manpage:`ptrace(2)` behavior, direct14* interaction between threads of the same process should always be allowed.15* This change ensures that any thread is allowed to send signals to any other16* thread within the same process, regardless of their domain.17*/18LANDLOCK_ERRATUM(2)192021