Reputation: 3846
If I send a process SIGSTOP by default the process will cease taking clock cycles, however it does not seem to unload itself from real memory. Does this behavior vary by implementation, or is there a way to force a process to page out? I use BSD Unix(Mac OS).
Upvotes: 1
Views: 159
Reputation: 231293
While I can't speak about mac os specifically, usually Unix-based OSes won't instantly page out upon SIGSTOP. There are a few reasons for this:
Upvotes: 3