From 810d5a7330463049ea21da04a1f92663715794a2 Mon Sep 17 00:00:00 2001 From: Ron Williams Date: Sat, 31 Jan 2026 22:58:49 +0000 Subject: [PATCH] Remove SI_QUEUE and SI_USER from signal mod.rs --- src/header/signal/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/header/signal/mod.rs b/src/header/signal/mod.rs index c2807f299e..ba070a4eff 100644 --- a/src/header/signal/mod.rs +++ b/src/header/signal/mod.rs @@ -45,9 +45,6 @@ pub const SIG_BLOCK: c_int = 0; pub const SIG_UNBLOCK: c_int = 1; pub const SIG_SETMASK: c_int = 2; -pub const SI_QUEUE: c_int = -1; -pub const SI_USER: c_int = 0; - pub const SIGEV_SIGNAL: c_int = 0; pub const SIGEV_NONE: c_int = 1; pub const SIGEV_THREAD: c_int = 2;