Docs.rs
hyperlight-guest-bin-0.10.0
hyperlight-guest-bin 0.10.0
Permalink
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
jprendes
jsturtevant
github:hyperlight-dev:crate-owners
Dependencies
buddy_system_allocator ^0.11.0
normal
hyperlight-common ^0.10.0
normal
hyperlight-guest ^0.10.0
normal
hyperlight-guest-tracing ^0.10.0
normal
log ^0.4
normal
spin ^0.10.0
normal
cc ^1.2
build
cfg-if ^1.0
build
glob ^0.3.3
build
Versions
46.67%
of the crate is documented
Platform
x86_64-apple-darwin
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Module memory
hyperlight_
guest_
bin
0.10.0
Module memory
Module Items
Functions
In crate hyperlight_
guest_
bin
hyperlight_guest_bin
Module
memory
Copy item path
Source
Functions
§
aligned_
alloc
⚠
Allocates aligned memory.
calloc
⚠
Allocates a block of memory for an array of
nmemb
elements, each of
size
bytes. The memory is initialized to 0s.
free
⚠
Frees the memory block pointed to by
ptr
.
malloc
⚠
Allocates a block of memory with the given size. The memory is not guaranteed to be initialized to 0s.
realloc
⚠
Changes the size of the memory block pointed to by
ptr
to
size
bytes. If the returned ptr is non-null, any usage of the old memory block is immediately undefined behavior.