Extend size of sig{en,de}queue payload.

This commit is contained in:
4lDO2
2024-08-01 19:14:49 +02:00
parent 54b1fbe453
commit 7def7ce6e3
3 changed files with 17 additions and 14 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ use core::{
num::NonZeroUsize,
};
use spin::RwLock;
use syscall::{SigProcControl, Sigcontrol};
use syscall::{RtSigInfo, SigProcControl, Sigcontrol};
use crate::{
arch::{interrupt::InterruptStack, paging::PAGE_SIZE},
@@ -198,7 +198,7 @@ pub struct SignalState {
pub threadctl_off: u16,
pub procctl_off: u16,
pub rtqs: Vec<VecDeque<usize>>,
pub rtqs: Vec<VecDeque<RtSigInfo>>,
}
impl Context {