Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
kernel
Commits
d8a0a818
Commit
d8a0a818
authored
4 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Plain Diff
Merge branch 'add_debug_to_structs' into 'master'
Implement Debug for a couple structs. See merge request
!142
parents
ad6035c7
efb5b474
No related branches found
Branches containing commit
No related tags found
1 merge request
!142
Implement Debug for a couple structs.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/arch/x86_64/paging/mapper.rs
+1
-0
1 addition, 0 deletions
src/arch/x86_64/paging/mapper.rs
src/arch/x86_64/paging/mod.rs
+1
-0
1 addition, 0 deletions
src/arch/x86_64/paging/mod.rs
with
2 additions
and
0 deletions
src/arch/x86_64/paging/mapper.rs
+
1
−
0
View file @
d8a0a818
...
...
@@ -76,6 +76,7 @@ impl Drop for MapperFlushAll {
}
}
#[derive(Debug)]
pub
struct
Mapper
{
p4
:
Unique
<
Table
<
Level4
>>
,
}
...
...
This diff is collapsed.
Click to expand it.
src/arch/x86_64/paging/mod.rs
+
1
−
0
View file @
d8a0a818
...
...
@@ -374,6 +374,7 @@ pub unsafe fn init_ap(
init_tcb
(
cpu_id
)
}
#[derive(Debug)]
pub
struct
ActivePageTable
{
mapper
:
Mapper
,
locked
:
bool
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment