peterlits zo

Results 72 comments of peterlits zo

What a great idea. To be honest, let us support every languages! It will be COOOOOOOOL!

> 1.0.81版本开始(1.0.81~1.0.84)这样报错,1.0.80以下则没问题(包括1.0.80)。 在 1.0.79 尝试了一下: ``` error: Can't alloc memory 60416 . Ventoy not ready chain empty failed press Enter to continue ``` 实在不知道是什么问题了。

I am using a proxy on MacOS. The origin config is: ``` export HTTP_PROXY=http://localhost:7890 export http_proxy=http://localhost:7890 export HTTPS_PROXY=http://localhost:7890 export https_proxy=http://localhost:7890 ``` Another tools works well but Bun does not. I...

Just a question: could we import a icon by `import ChevronDownSquare from "lucide-solid/chevron-down-square"`?

I think it is better if you leave a message by English but not Chinese... 启动后页面报错 means: After start it, it throw some error.

> n this document,shit,how can i open a new window in this software,a lot of time be waste! and tray, you kown tray? it's failed. i'm so Well, what happen...

Hello, I finally rebase it to the current commit. It has been delayed over one more year. If you think it is OK, please merge it please. I have only...

Great. In my opinion, this will be a great choose. Make `is-even` great again.

不是很懂,这个 frame_allocator 和 dubby_allocator 不是重合了吗?为啥源代码中有两个?我想来想去全局分配都是通过 dubby_allcator,和 frame_allocator 好像没有关系,那么我是不是可以把之前的 frame_allocator 给删掉啊?

> > 不是很懂,这个 frame_allocator 和 dubby_allocator 不是重合了吗?为啥源代码中有两个?我想来想去全局分配都是通过 dubby_allcator,和 frame_allocator 好像没有关系,那么我是不是可以把之前的 frame_allocator 给删掉啊? > > frame_allocator 用于管理物理页帧,存放页表的应用的数据;而 buddy_allocator 用于内核的动态内存分配,比如支持 `Box,Vec` 等。它们的功能不同,管理的内存区域也不同。详见最新版文档: > > * [动态内存分配](https://rcore-os.github.io/rCore-Tutorial-Book-v3/chapter4/2rust-dynamic-allocation.html) > * [物理页帧管理](https://rcore-os.github.io/rCore-Tutorial-Book-v3/chapter4/4sv39-implementation-2.html#id1) 谢谢你,我看了两个小时,有一点粗浅的理解还请斧正: frame_allocator 是用来管理所有可用内存的页框的(但是在这个章节里我并没有看到它的应用?它好像就初始化了之后就放在一边了?)然后我们分配了一个静态的内存池,然后在上面为基础来支持为内核分配动态空间以满足内核需要(换句话说...