Merge of r4865: clearing of cpu_affinity after process spawn.

This fixes unwanted/incorrect cpu_affinity use on dead worker processes
respawn.  While this is not ideal, it's expected to be better when previous
situation where multiple processes were spawn with identical CPU affinity
set.

Reported by Charles Chen.
This commit is contained in:
Maxim Dounin 2012-11-12 17:54:49 +00:00
parent 3cf301db77
commit 8541966db2
1 changed files with 2 additions and 0 deletions

View File

@ -371,6 +371,8 @@ ngx_start_worker_processes(ngx_cycle_t *cycle, ngx_int_t n, ngx_int_t type)
ngx_pass_open_channel(cycle, &ch);
}
cpu_affinity = 0;
}