Skip to content

Commit

Permalink
Build: (83c72e6) 64Bit Memory Management (#9)
Browse files Browse the repository at this point in the history
Page Allocation & Mapping
Virtutal Memory Space per process (& kernel)
Kernel and Physical memory moved to higher half
  • Loading branch information
maxtyson123 committed Oct 13, 2024
1 parent 3eed165 commit 50a6c22
Show file tree
Hide file tree
Showing 899 changed files with 28,865 additions and 11,643 deletions.
18 changes: 14 additions & 4 deletions doxygen-awesome-interactive-toc.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ class DoxygenAwesomeInteractiveToc {
headerNode: document.getElementById(id)
})

document.getElementById("doc-content")?.addEventListener("scroll", () => {
DoxygenAwesomeInteractiveToc.update()
})
document.getElementById("doc-content")?.addEventListener("scroll",this.throttle(DoxygenAwesomeInteractiveToc.update, 100))
})
DoxygenAwesomeInteractiveToc.update()
}
Expand All @@ -78,4 +76,16 @@ class DoxygenAwesomeInteractiveToc {
active?.classList.add("active")
active?.classList.remove("aboveActive")
}
}

static throttle(func, delay) {
let lastCall = 0;
return function (...args) {
const now = new Date().getTime();
if (now - lastCall < delay) {
return;
}
lastCall = now;
return setTimeout(() => {func(...args)}, delay);
};
}
}
42 changes: 27 additions & 15 deletions doxygen-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ body {
body, table, div, p, dl, #nav-tree .label, .title,
.sm-dox a, .sm-dox a:hover, .sm-dox a:focus, #projectname,
.SelectItem, #MSearchField, .navpath li.navelem a,
.navpath li.navelem a:hover, p.reference, p.definition {
.navpath li.navelem a:hover, p.reference, p.definition, div.toc li, div.toc h3 {
font-family: var(--font-family);
}

Expand All @@ -334,6 +334,7 @@ p.reference, p.definition {
a:link, a:visited, a:hover, a:focus, a:active {
color: var(--primary-color) !important;
font-weight: 500;
background: none;
}

a.anchor {
Expand Down Expand Up @@ -804,6 +805,12 @@ html.dark-mode iframe#MSearchResults {
#nav-tree .item {
height: var(--tree-item-height);
line-height: var(--tree-item-height);
overflow: hidden;
text-overflow: ellipsis;
}

#nav-tree .item > a:focus {
outline: none;
}

#nav-sync {
Expand All @@ -818,6 +825,8 @@ html.dark-mode iframe#MSearchResults {
background-image: none;
background-color: transparent;
position: relative;
color: var(--primary-color) !important;
font-weight: 500;
}

#nav-tree .selected::after {
Expand All @@ -843,6 +852,7 @@ html.dark-mode iframe#MSearchResults {

#nav-tree .arrow {
opacity: var(--side-nav-arrow-opacity);
background: none;
}

.arrow {
Expand Down Expand Up @@ -1040,7 +1050,7 @@ blockquote::after {
blockquote p {
margin: var(--spacing-small) 0 var(--spacing-medium) 0;
}
.paramname {
.paramname, .paramname em {
font-weight: 600;
color: var(--primary-dark-color);
}
Expand Down Expand Up @@ -1090,7 +1100,7 @@ div.contents .toc {
border: 0;
border-left: 1px solid var(--separator-color);
border-radius: 0;
background-color: transparent;
background-color: var(--page-background-color);
box-shadow: none;
position: sticky;
top: var(--toc-sticky-top);
Expand Down Expand Up @@ -1743,7 +1753,7 @@ table.fieldtable th {
color: var(--tablehead-foreground);
}

table.fieldtable td.fieldtype, .fieldtable td.fieldname, .fieldtable td.fielddoc, .fieldtable th {
table.fieldtable td.fieldtype, .fieldtable td.fieldname, .fieldtable td.fieldinit, .fieldtable td.fielddoc, .fieldtable th {
border-bottom: 1px solid var(--separator-color);
border-right: 1px solid var(--separator-color);
}
Expand Down Expand Up @@ -1982,14 +1992,16 @@ hr {
}

.contents hr {
box-shadow: 100px 0 0 var(--separator-color),
-100px 0 0 var(--separator-color),
500px 0 0 var(--separator-color),
-500px 0 0 var(--separator-color),
1500px 0 0 var(--separator-color),
-1500px 0 0 var(--separator-color),
2000px 0 0 var(--separator-color),
-2000px 0 0 var(--separator-color);
box-shadow: 100px 0 var(--separator-color),
-100px 0 var(--separator-color),
500px 0 var(--separator-color),
-500px 0 var(--separator-color),
900px 0 var(--separator-color),
-900px 0 var(--separator-color),
1400px 0 var(--separator-color),
-1400px 0 var(--separator-color),
1900px 0 var(--separator-color),
-1900px 0 var(--separator-color);
}

.contents img, .contents .center, .contents center, .contents div.image object {
Expand Down Expand Up @@ -2460,17 +2472,17 @@ h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.
Optional tab feature
*/

.tabbed ul {
.tabbed > ul {
padding-inline-start: 0px;
margin: 0;
padding: var(--spacing-small) 0;
}

.tabbed li {
.tabbed > ul > li {
display: none;
}

.tabbed li.selected {
.tabbed > ul > li.selected {
display: block;
}

Expand Down
Loading

0 comments on commit 50a6c22

Please sign in to comment.