Joe
Joe

Reputation: 7798

Disabling Linux memory overcommit inside an application

You can adjust the memory overcommit policy system-wide via sysctl calls, but is it possible to adjust this policy on a per-process basis from within the process itself?

I want to make one particular real-time process never use overcommit, though the rest of the system can overcommit.

Upvotes: 5

Views: 1919

Answers (1)

janneb
janneb

Reputation: 37208

No, it's not possible.

Somewhat related, for a real-time process, you probably want to use the mlock or mlockall functions to pin your address space to RAM.

Upvotes: 2

Related Questions