kernel-alloc-rs icon indicating copy to clipboard operation
kernel-alloc-rs copied to clipboard

Examples for String, and Vec

Open shujaatak opened this issue 1 year ago • 0 comments

Rust has many useful abstractions and utils that require heap allocations, such as String, Vec, and Box. To be able to use them in the Windows kernel space, we need to allocate memory at runtime, which requires a custom allocator. This crate provides such allocators tailored for the Windows kernel.

Some examples illustrating this library use with String, and Vec would be really appreciated.

shujaatak avatar Sep 04 '24 14:09 shujaatak