-
Notifications
You must be signed in to change notification settings - Fork 141
Rename MultiUseSandbox
-> Sandbox
, UninitializedSandbox::evolve
-> UninitializedSandbox::init
#762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
c63891d
f4582ce
154e5e6
10875d1
87cab19
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ limitations under the License. | |
//! and host-guest communication. | ||
//! | ||
//! The primary entry points are [`UninitializedSandbox`] for initial setup and | ||
//! [`MultiUseSandbox`] for executing guest functions. | ||
//! [`Sandbox`] for executing guest functions. | ||
//! | ||
//! ## Guest Requirements | ||
//! | ||
|
@@ -92,7 +92,7 @@ pub use error::HyperlightError; | |
/// Re-export for `MemMgrWrapper` type | ||
/// A sandbox that can call be used to make multiple calls to guest functions, | ||
/// and otherwise reused multiple times | ||
pub use sandbox::MultiUseSandbox; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we can take this chance to remove these reexports? I'm not sure there is a reason to keep these? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I opened #765 to see what we want to expose as our public API |
||
pub use sandbox::Sandbox; | ||
/// The re-export for the `UninitializedSandbox` type | ||
pub use sandbox::UninitializedSandbox; | ||
/// The re-export for the `is_hypervisor_present` type | ||
|
Uh oh!
There was an error while loading. Please reload this page.