git-subtree-dir: lib/abi git-subtree-mainline: 18fa8b954a2b9372920035b0d4cdcf0d2d5c0902 git-subtree-split: fdb3e18b598f9250f9f5a6443390e0aac1f57071
14 lines
327 B
Rust
14 lines
327 B
Rust
use crate::arch::SavedFrame;
|
|
|
|
pub use crate::generated::Signal;
|
|
|
|
/// Data provided by the kernel to signal entry function
|
|
#[derive(Clone, Debug)]
|
|
#[repr(C)]
|
|
pub struct SignalEntryData {
|
|
/// Which signal was issued
|
|
pub signal: Signal,
|
|
/// Saved frame of the context that was interrupted
|
|
pub frame: SavedFrame,
|
|
}
|