The OS generally will give processes the resources they ask for. That’s what the resources are for after all. So if a process wants 10GB of ram it’ll get it if its needed. Same with CPU time, if a process uses a lot of CPU, the OS will let it. Now of course if it uses memory to the point that the system just can’t run, the process will get killed. And at least the Linux scheduler will dynamically decrease the priority of processor-intensive tasks to preserve responsiveness. But in general your computer resources are there to be used and the OS isn’t going to stop you from using them.
Latest Answers