进程的内存分配

发布于 2025-01-06 21:38:56 字数 173 浏览 0 评论 0原文

我有一个关于与分配的内存相关的进程执行的问题。假设我有两个进程,P1 和 P2。如果 P1 分配大量内存,为 P2 留下很少的可用内存,现在如果我启动 P2,P2 会在不更改 P1 内存的情况下运行吗?或者操作系统会从 P1 调出一些内存来为 P2 创建空间吗?为了让我清楚起见,请您回答这些问题。

谢谢, 拉凯什。

I have a question regarding the process execution with relation to memory allocated. Let's say I have two processes, P1 and P2. If P1 allocates huge chunks of memory leaving little free memory for P2 and now if I start P2, will P2 run without any changes to P1's memory? or will the OS page out some memory from P1 to create space for P2? Request you to answer these questions for my clarity.

Thanks,
Rakesh.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请止步禁区 2025-01-13 21:38:56

有两种情况: -

如果不支持分页并且我们一次为整个进程分配内存:

假设有两个进程并且涉及循环调度。然后,当 P1 的量程结束时,如果没有足够的内存供 P2 使用,P1 将被换出到后备存储,并引入 P2。

如果支持分页和虚拟内存:

现在,两个进程都将根据以下情况分配帧 :根据它们的优先级或大小。如果空间不存在,将遵循全局或本地页面替换算法。

There are two cases:-

If paging is not supported and we allocate memory to entire process at once:

Suppose there are two processes and round robin scheduling is involved. Then, when the quantum of P1 ends and if there is not enough memory for P2, P1 is swapped out to a backing store and P2 is brought in.

If paging and virtual memory is supported:

Now both processes will have frames allocated to them based on their priority or size. Either global or local page replacement algorithms will be followed if space is not there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文