asan: fix typo in comment

llvm-svn: 157314
This commit is contained in:
Dmitry Vyukov 2012-05-23 06:14:21 +00:00
parent a4fd6d655a
commit 4a17675888
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ void AsanThread::SetThreadStackTopAndBottom() {
stacksize = end - prev_end;
// When running with unlimited stack size, we still want to set some limit.
// The unlimited stack size is caused by 'ulimit -s unlimited'.
// Also, for some reason, GNU make spawns subrocesses with unlimited stack.
// Also, for some reason, GNU make spawns subprocesses with unlimited stack.
if (stacksize > kMaxThreadStackSize)
stacksize = kMaxThreadStackSize;
stack_top_ = end;