apache windows2000 応答可能な同時リクエスト数

先月来の業務システムで、windows2000server上で構築したapacheでさばける
セッション数を確認した。
本ページによると
windows環境では、「子プロセスの最大数は1」。この子プロセスでは、デフォルトで
64のスレッドを生成可能。
スレッド数を増やすのであれば、ThreadsPerChildディレクティブで設定。
以下は実機確認結果。
デフォルトのままapacheを起動した場合、Apache2.2\logs\error.logにデフォルトの
64個のスレッドが開始されたことが確認できた。(以下の7行目メッセージ)
(error.log)
[Tue Jun 07 06:26:31 2011] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Jun 07 06:26:31 2011] [notice] Apache/2.2.15 (Win32) configured -- resuming normal operations
[Tue Jun 07 06:26:31 2011] [notice] Server built: Mar 4 2010 11:27:46
[Tue Jun 07 06:26:31 2011] [notice] Parent: Created child process 1672
[Tue Jun 07 06:26:31 2011] [notice] Child 1672: Child process is running
[Tue Jun 07 06:26:31 2011] [notice] Child 1672: Acquired the start mutex.
[Tue Jun 07 06:26:31 2011] [notice] Child 1672: Starting 64 worker threads.
[Tue Jun 07 06:26:31 2011] [notice] Child 1672: Starting thread to listen on port 80.

Apache2.2\conf\httpd.confのhttpd-mpm.confのInclude文のコメントをはずし
Apache2.2\conf\extra\httpd-mpm.confのThreadsPerChildディレクティブを
150に設定。

httpd.conf)
# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf
httpd-mpm.conf)

ThreadsPerChild 150
MaxRequestsPerChild 0

apacheを再起動すると、1504個のスレッドが開始されたことが確認できた。(以下の7行目メッセージ)
[Tue Jun 07 08:15:49 2011] [notice] Apache/2.2.15 (Win32) configured -- resuming normal operations
[Tue Jun 07 08:15:49 2011] [notice] Server built: Mar 4 2010 11:27:46
[Tue Jun 07 08:15:49 2011] [notice] Parent: Created child process 1516
[Tue Jun 07 08:15:50 2011] [notice] Child 1516: Child process is running
[Tue Jun 07 08:15:50 2011] [notice] Child 1516: Acquired the start mutex.
[Tue Jun 07 08:15:50 2011] [notice] Child 1516: Starting 150 worker threads.
[Tue Jun 07 08:15:50 2011] [notice] Child 1516: Starting thread to listen on port 80.