Cleanup: Various comment and whitespace fixes.
Change-Id: I37c3e3346813efc595df651421b7e8ff4fbf3339 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2845 Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
committed by
waddlesplash
parent
b3bd66961a
commit
2555f33549
@@ -27,7 +27,7 @@ struct X86VMTranslationMap : VMTranslationMap {
|
||||
|
||||
status_t Init(bool kernel);
|
||||
|
||||
virtual bool Lock() final;
|
||||
virtual bool Lock() final;
|
||||
virtual void Unlock() final;
|
||||
|
||||
virtual addr_t MappedSize() const final;
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
|
||||
/*! This is main - initializes the kernel and launches the Bootscript */
|
||||
/*! This is main - initializes the kernel and launches the launch_daemon */
|
||||
|
||||
|
||||
#include <string.h>
|
||||
|
||||
@@ -958,7 +958,7 @@ VMAnonymousCache::Merge(VMCache* _source)
|
||||
{
|
||||
VMAnonymousCache* source = dynamic_cast<VMAnonymousCache*>(_source);
|
||||
if (source == NULL) {
|
||||
panic("VMAnonymousCache::MergeStore(): merge with incompatible cache "
|
||||
panic("VMAnonymousCache::Merge(): merge with incompatible cache "
|
||||
"%p requested", _source);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -347,7 +347,7 @@ VMUserAddressSpace::UnreserveAddressRange(addr_t address, size_t size,
|
||||
// check to see if this address space has entered DELETE state
|
||||
if (fDeleting) {
|
||||
// okay, someone is trying to delete this address space now, so we can't
|
||||
// insert the area, so back out
|
||||
// remove the area, so back out
|
||||
return B_BAD_TEAM_ID;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user