Fix SigSet length.

This commit is contained in:
4lDO2
2025-04-15 00:12:57 +02:00
parent 05481b36a6
commit 26c92af7ba
+1 -1
View File
@@ -23,7 +23,7 @@ pub mod sys;
#[path = "redox.rs"]
pub mod sys;
type SigSet = BitSet<[c_ulong; 1]>;
type SigSet = BitSet<[u64; 1]>;
pub(crate) const SIG_DFL: usize = 0;
pub(crate) const SIG_IGN: usize = 1;