Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux のプロセス(タスク)の最大数は で計算されるそうです。
「スレッド数 = 仮想メモリの合計 / (スタック サイズ * 1024 * 1024)」
ただし、ページテーブルはページアウトできないため、興味があります
すべてのプロセスには独自のページテーブルが必要です(ページディレクトリを含む)
これがOSのプロセス数を制限する要因になるのではないかと思います。
私は正しいですか、それとも間違っていますか?
IA-64 Linux Kernel: Design and Implementation の章 4.3 Page Tablesによると、あなたは正しいです。