| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2024-10-27 | Remove redundant code | Matteo Gmür | 1 | -8/+0 | |
| 2024-10-27 | Use container and C++20 range algorithms for allocator. | Matteo Gmür | 2 | -52/+78 | |
| 2024-10-27 | Attempt to start using C++20 algorithm calls. | Matteo Gmür | 3 | -14/+38 | |
| 2024-10-26 | Update boot.s comments and comment initalize page tables out | Matteo Gmür | 2 | -4/+7 | |
| 2024-10-26 | Attempt to fix initalize_page_tables, crashes on n = 1, m = 507 | Matteo Gmür | 1 | -1/+1 | |
| 2024-10-26 | Fix missing default constructor. | Matteo Gmür | 1 | -2/+1 | |
| 2024-10-26 | Write P3 table into P4 table at index 0 | Matteo Gmür | 2 | -0/+8 | |
| 2024-10-26 | Merge branch 'feat_memory_manager' of ↵ | Fabian Imhof | 1 | -3/+12 | |
| ssh://gitlab.ost.ch:45022/teachos/kernel into feat_memory_manager | |||||
| 2024-10-26 | add doc | Fabian Imhof | 1 | -0/+4 | |
| 2024-10-26 | Fix typo | Matteo Gmür | 1 | -1/+1 | |
| 2024-10-26 | Create for loops to construct base level 3 page table | Matteo Gmür | 1 | -3/+12 | |
| 2024-10-26 | use linker variable | Fabian Imhof | 1 | -1/+3 | |
| 2024-10-26 | Adjust to toolchain updates | Matteo Gmür | 2 | -5/+3 | |
| 2024-10-26 | wip | Fabian Imhof | 3 | -15/+28 | |
| 2024-10-26 | Use construct at to zero memory before using it. | Matteo Gmür | 2 | -13/+13 | |
| 2024-10-26 | fix mmap type, adjust linker, use std::array | Fabian Imhof | 1 | -2/+5 | |
| 2024-10-23 | Replace uint64_t with size_t | Matteo Gmür | 1 | -2/+2 | |
| 2024-10-23 | Add todo comment on why code crashes | Matteo Gmür | 1 | -0/+1 | |
| 2024-10-23 | Use virtual level 4 address again | Matteo Gmür | 2 | -3/+7 | |
| 2024-10-23 | Revert "Initalize page table on first call" | Matteo Gmür | 1 | -2/+6 | |
| This reverts commit 355993d16fcdb2d020d6f1ff02adfa191f8f4d48. | |||||
| 2024-10-23 | Initalize page table on first call | Matteo Gmür | 1 | -6/+2 | |
| 2024-10-23 | Ensure page table is static | Matteo Gmür | 1 | -1/+1 | |
| 2024-10-23 | Extract next_table_or_create into page_table | Matteo Gmür | 1 | -2/+0 | |
| 2024-10-22 | Remove default initalization of member variables | Matteo Gmür | 1 | -3/+2 | |
| 2024-10-22 | add todos | Fabian Imhof | 1 | -2/+3 | |
| 2024-10-22 | Merge branch 'feat_memory_manager' of ↵ | Fabian Imhof | 2 | -8/+4 | |
| ssh://gitlab.ost.ch:45022/teachos/kernel into feat_memory_manager | |||||
| 2024-10-22 | use actual page_table address | Fabian Imhof | 4 | -15/+14 | |
| 2024-10-22 | Implement precrement instead | Matteo Gmür | 2 | -8/+4 | |
| 2024-10-22 | add previous state to comment | Fabian Imhof | 1 | -0/+1 | |
| 2024-10-22 | fix page level -- operator | Fabian Imhof | 1 | -4/+9 | |
| 2024-10-22 | Merge branch 'feat_memory_manager' of ↵ | Fabian Imhof | 3 | -10/+9 | |
| ssh://gitlab.ost.ch:45022/teachos/kernel into feat_memory_manager | |||||
| 2024-10-22 | change table level 4 address | Fabian Imhof | 1 | -11/+4 | |
| 2024-10-22 | Adjust all briefs | Matteo Gmür | 3 | -10/+9 | |
| 2024-10-22 | update comments | Fabian Imhof | 1 | -9/+12 | |
| 2024-10-21 | Fix linker error using friend method 👬 | Matteo Gmür | 3 | -16/+41 | |
| 2024-10-21 | Adding more mapping methods | Matteo Gmür | 1 | -0/+5 | |
| 2024-10-21 | Use forward declaration to hide actual page_table | Matteo Gmür | 3 | -21/+65 | |
| 2024-10-21 | Fix weird linker error | Matteo Gmür | 1 | -4/+3 | |
| 2024-10-21 | Use handle struct to ensure next_table is not called on page table level 1 | Matteo Gmür | 4 | -34/+47 | |
| 2024-10-21 | Ensure only one instance of global page table can exist | Matteo Gmür | 4 | -76/+66 | |
| 2024-10-20 | Fix active page table cpp | Matteo Gmür | 1 | -22/+12 | |
| 2024-10-20 | create active_page_table | Fabian Imhof | 1 | -0/+31 | |
| 2024-10-20 | Make map_page_to_frame use concept | Matteo Gmür | 1 | -29/+0 | |
| 2024-10-20 | Fix set_entry flags usage | Matteo Gmür | 2 | -4/+4 | |
| 2024-10-20 | Fix useless copy by reference | Matteo Gmür | 1 | -2/+2 | |
| 2024-10-20 | Merge branch 'feat_memory_manager' of ↵ | Fabian Imhof | 3 | -11/+18 | |
| ssh://gitlab.ost.ch:45022/teachos/kernel into feat_memory_manager | |||||
| 2024-10-20 | document page mapping and entry | Fabian Imhof | 1 | -2/+2 | |
| 2024-10-20 | Revert assert with printf functionality, requires malloc 😭 | Matteo Gmür | 3 | -11/+18 | |
| 2024-10-20 | Add printf like behaviour to assert | Matteo Gmür | 7 | -41/+33 | |
| 2024-10-20 | fix logic | Fabian Imhof | 1 | -5/+5 | |
