We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
您的功能请求是否与问题/故障有关?请描述一下。 目前所有的内存分配都是使用buddy分配器的,空间浪费严重。
描述您想要的解决方案 为了降低内存碎片,需要引入slab分配器。 经过简单的搜索,我发现这个库: https://github.com/gz/rust-slabmalloc 貌似还可以。 但是需要对其正确性和速度进行进一步的测试。 然后把它集成到内核中。
The text was updated successfully, but these errors were encountered:
fslongjin
No branches or pull requests
您的功能请求是否与问题/故障有关?请描述一下。
目前所有的内存分配都是使用buddy分配器的,空间浪费严重。
描述您想要的解决方案
为了降低内存碎片,需要引入slab分配器。
经过简单的搜索,我发现这个库: https://github.com/gz/rust-slabmalloc 貌似还可以。
但是需要对其正确性和速度进行进一步的测试。
然后把它集成到内核中。
The text was updated successfully, but these errors were encountered: