From 10c53aef10f45579bfde4c16ec6c2efcefa8449f Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Sun, 13 Apr 2025 20:43:31 +0200 Subject: [PATCH] Remove RtSigInfo import. --- src/context/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/context/context.rs b/src/context/context.rs index 37cf139aad..ffa81befc9 100644 --- a/src/context/context.rs +++ b/src/context/context.rs @@ -1,11 +1,11 @@ -use alloc::{borrow::Cow, collections::VecDeque, sync::Arc, vec::Vec}; +use alloc::{borrow::Cow, sync::Arc, vec::Vec}; use core::{ mem::{self, size_of}, num::NonZeroUsize, sync::atomic::{AtomicU32, Ordering}, }; use spin::RwLock; -use syscall::{RtSigInfo, SigProcControl, Sigcontrol}; +use syscall::{SigProcControl, Sigcontrol}; #[cfg(feature = "sys_stat")] use crate::cpu_stats;