Errors: Use the correct panic/warn/fatal/info message in some places.

This commit is contained in:
Ali Saidi
2009-01-30 20:04:17 -05:00
parent f4291aac25
commit e7293dd24e
4 changed files with 10 additions and 10 deletions

View File

@@ -343,7 +343,7 @@ Process::checkAndAllocNextPage(Addr vaddr)
if(stack_base - stack_min > 8*1024*1024)
fatal("Over max stack size for one thread\n");
pTable->allocate(stack_min, TheISA::PageBytes);
warn("Increasing stack size by one page.");
inform("Increasing stack size by one page.");
};
return true;
}