blob: 06682f15e30e2bdd40918a2ef13645eb49ddd66f (
plain)
1
2
3
4
5
6
7
|
//! TSS Stack Operations
pub const allocate = @import("allocate.zig");
pub const allocate_kernel_stack = allocate.allocate_kernel_stack;
pub const allocate_ist_stack = allocate.allocate_ist_stack;
pub const free_stack = allocate.free_stack;
|