hurlex-doc icon indicating copy to clipboard operation
hurlex-doc copied to clipboard

hurlex 小内核分章节代码和文档

Results 5 hurlex-doc issues
Sort by recently updated
recently updated
newest added

0x100000(1MB)是否是10M

![image](https://user-images.githubusercontent.com/5444056/203932447-df12efac-dc59-4952-9251-a77ebd77f1fb.png) Bios Entry处的地址,少了一个F

common.h里两个函数声明去掉inline关键字、 inline关键字在GCC参考文档中仅有对其使用在函数定义(Definition)上的描述,而没有提到其是否能用于函数声明(Declare)

split_chunk()函数缺少了 next_chunck->next->prev = next_chunck; 如果不这样的话 newchunk->next->pre永远指向 chunk 而不是 newchunk。 是否应该添加这样的代码 ``` if(newchunck->next) { newchunck->next->prev = newchunck; } ```

如图 ![image](https://github.com/user-attachments/assets/2f19439f-f252-4775-a433-1eb5e6b6f984) 在编译后运行出现该状况