Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Completed a MVP of the physical memory manager
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpatelcsecon committed Feb 8, 2024
1 parent 0127118 commit 4e16f8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charlotte_core/src/access_control/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub enum CapabilityType {
/// There will be a global capability table for each capability type that maps capability IDs to the
/// capability struct itself. This table will be used to look up capabilities by their IDs.
type CapabilityId = u64;
pub type CapabilityId = u64;

/// A capability represents a resource and the operations that can be performed on that resource. All
/// capabilities must implement the Drop trait so that the resource can be cleaned up when the capability
Expand Down
2 changes: 2 additions & 0 deletions charlotte_core/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#![no_std]
#![no_main]

#![feature(slice_internals)]

mod access_control;
mod arch;
mod bootinfo;
Expand Down

0 comments on commit 4e16f8f

Please sign in to comment.