From 0ef55a396fa7db804a1e50943ebf85c587e25712 Mon Sep 17 00:00:00 2001 From: Ruihan Li Date: Sat, 9 Nov 2024 12:57:59 +0800 Subject: [PATCH] Add a note about the FIXME --- kernel/src/process/signal/pause.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/src/process/signal/pause.rs b/kernel/src/process/signal/pause.rs index 7184cbf89..17ab54278 100644 --- a/kernel/src/process/signal/pause.rs +++ b/kernel/src/process/signal/pause.rs @@ -89,7 +89,8 @@ pub trait Pause: WaitTimeout { /// This method will return an error with [`ETIME`] if the timeout is reached. /// /// Unlike other methods in the trait, this method will _not_ return an error with [`EINTR`] if - /// a signal is received (FIXME). + /// a signal is received (FIXME: See for why + /// we cannot fix this directly). /// /// [`ETIME`]: crate::error::Errno::ETIME /// [`EINTR`]: crate::error::Errno::EINTR