From b30d93aed0f3f457cc9d07eacc56d186b0bc6a19 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Tue, 25 Jun 2024 11:13:23 +0200 Subject: [PATCH] Re-document control word mask as 'unmask'. --- src/data.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data.rs b/src/data.rs index e769f151d5..244d779a7f 100644 --- a/src/data.rs +++ b/src/data.rs @@ -362,7 +362,7 @@ impl DerefMut for SetSighandlerData { #[derive(Debug, Default)] #[repr(C)] pub struct SigProcControl { - // composed of [lo pend|lo mask, hi pend|hi mask] + // composed of [lo "pending" | lo "unmasked", hi "pending" | hi "unmasked"] pub word: [AtomicU64; 2], } @@ -370,7 +370,7 @@ pub struct SigProcControl { #[derive(Debug, Default)] #[repr(C)] pub struct Sigcontrol { - // composed of [lo pend|lo mask, hi pend|hi mask] + // composed of [lo "pending" | lo "unmasked", hi "pending" | hi "unmasked"] pub word: [AtomicU64; 2], pub control_flags: SigatomicUsize,