2011-08-05 08:25:00 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
process.h
|
|
|
|
Describes a process belonging to a subsystem.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SORTIX_PROCESS_H
|
|
|
|
#define SORTIX_PROCESS_H
|
|
|
|
|
|
|
|
#include "descriptors.h"
|
|
|
|
|
|
|
|
namespace Sortix
|
|
|
|
{
|
|
|
|
class Thread;
|
|
|
|
class Process;
|
2011-08-27 10:46:00 -04:00
|
|
|
struct ProcessSegment;
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2011-08-27 10:46:00 -04:00
|
|
|
struct ProcessSegment
|
2011-08-05 08:25:00 -04:00
|
|
|
{
|
|
|
|
public:
|
2011-08-27 10:46:00 -04:00
|
|
|
ProcessSegment() : prev(NULL), next(NULL) { }
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
public:
|
2011-08-27 10:46:00 -04:00
|
|
|
ProcessSegment* prev;
|
|
|
|
ProcessSegment* next;
|
|
|
|
addr_t position;
|
|
|
|
size_t size;
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2011-08-27 10:46:00 -04:00
|
|
|
public:
|
|
|
|
bool Intersects(ProcessSegment* segments);
|
|
|
|
|
|
|
|
};
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2011-08-27 10:46:00 -04:00
|
|
|
class Process
|
|
|
|
{
|
2011-08-05 08:25:00 -04:00
|
|
|
public:
|
2011-08-27 10:46:00 -04:00
|
|
|
Process(addr_t addrspace);
|
|
|
|
~Process();
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
private:
|
2011-08-27 10:46:00 -04:00
|
|
|
addr_t _addrspace;
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2011-08-27 10:46:00 -04:00
|
|
|
public:
|
|
|
|
DescriptorTable descriptors;
|
|
|
|
ProcessSegment* segments;
|
|
|
|
|
2011-08-27 17:03:39 -04:00
|
|
|
public:
|
|
|
|
bool sigint;
|
|
|
|
|
2011-08-27 10:46:00 -04:00
|
|
|
public:
|
|
|
|
addr_t _endcodesection; // HACK
|
|
|
|
|
|
|
|
public:
|
|
|
|
addr_t GetAddressSpace() { return _addrspace; }
|
|
|
|
void ResetAddressSpace();
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool IsSane() { return _addrspace != 0; }
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
};
|
2011-08-27 10:46:00 -04:00
|
|
|
|
|
|
|
Process* CurrentProcess();
|
2011-08-27 14:57:39 -04:00
|
|
|
|
|
|
|
void SysExecute(CPU::InterruptRegisters* R);
|
2011-08-05 08:25:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|