Skip to content

Commit

Permalink
Небольшие исправления комментариев
Browse files Browse the repository at this point in the history
В рамках ревью pull-а #15
  • Loading branch information
0Nera committed Sep 21, 2024
1 parent d8fd702 commit 1c408d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/mem.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#define BLOCK_SIZE 4096
#define HHDM_OFFSET (hhdm_request.response->offset)

// Вывод данных о каждом выделенном блоке памяти
// Вывод состояния всех блоков памяти
void mem_dump_memory( );

// Вывод размеров занятой и освобожденной памяти
Expand Down
2 changes: 1 addition & 1 deletion kernel/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <stdbool.h>
#include <tool.h>

// Запрос к загрузчику Limine о состоянии памяти
// Запрос карты памяти от загрузчика
static volatile struct limine_memmap_request memmap_request = { .id = LIMINE_MEMMAP_REQUEST,
.revision = 0,
.response = (struct limine_memmap_response *)0 };
Expand Down

0 comments on commit 1c408d2

Please sign in to comment.