/****************************************************************************** COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. This file is part of Sortix. Sortix is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Sortix is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Sortix. If not, see . process.cpp Describes a process belonging to a subsystem. ******************************************************************************/ #include "platform.h" #include #include "process.h" #include "memorymanagement.h" namespace Sortix { bool ProcessSegment::Intersects(ProcessSegment* segments) { for ( ProcessSegment* tmp = segments; tmp != NULL; tmp = tmp->next ) { if ( tmp->position < position + size && position < tmp->position + tmp->size ) { return true; } } if ( next ) { return next->Intersects(segments); } return false; } Process::Process(addr_t addrspace) { _addrspace = addrspace; _endcodesection = 0x400000UL; segments = NULL; } Process::~Process() { ResetAddressSpace(); // Avoid memory leaks. ASSERT(segments == NULL); // TODO: Delete address space! } void Process::ResetAddressSpace() { ProcessSegment* tmp = segments; while ( tmp != NULL ) { VirtualMemory::UnmapRangeUser(tmp->position, tmp->size); ProcessSegment* todelete = tmp; tmp = tmp->next; delete todelete; } segments = NULL; } }