From c942db56cced426d2de27c4814c944b7b7bd619a Mon Sep 17 00:00:00 2001 From: ruthgrace Date: Sun, 25 Oct 2015 14:05:08 -0400 Subject: [PATCH] changed first sentence in Heap API section as requested --- Booting/linux-bootstrap-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-3.md b/Booting/linux-bootstrap-3.md index f75bd46..96d68ac 100644 --- a/Booting/linux-bootstrap-3.md +++ b/Booting/linux-bootstrap-3.md @@ -58,7 +58,7 @@ If you read source code of the kernel, you'll see these very often and so it wil Heap API -------------------------------------------------------------------------------- -After we have `vid_mode` from `boot_params.hdr` in the `set_video` function we can see a call to the `RESET_HEAP` function. `RESET_HEAP` is a macro which is defined in [boot.h](https://github.com/torvalds/linux/blob/master/arch/x86/boot/boot.h#L199). It is defined as: +After we get `vid_mode` from `boot_params.hdr` in the `set_video` function, we can see the call to the `RESET_HEAP` function. `RESET_HEAP` is a macro which is defined in [boot.h](https://github.com/torvalds/linux/blob/master/arch/x86/boot/boot.h#L199). It is defined as: ```C #define RESET_HEAP() ((void *)( HEAP = _end ))