summaryrefslogtreecommitdiff
path: root/Source/Kernel/TaskManager/Process.class.cpp
Commit message (Collapse)AuthorAgeFilesLines
* More work on syscallsAlexis2112009-10-181-3/+20
|
* Loading binaries now is done through a much more unified interface.Alexis2112009-10-181-1/+23
|
* Melon now loads a simple ASM application out of the ramfsAlexis2112009-10-171-1/+2
| | | | The format is very simple, but an ELF loader is planned.
* Each thread now has a kernel stack and an user stackAlexis2112009-10-171-1/+3
|
* Each Process now has a user heap.Alexis2112009-10-171-12/+11
| | | | It will be used for transferring data from kernel to userland.
* We now use a temporary stack in task management for :Alexis2112009-10-161-1/+1
| | | | | - deleting current thread whe it finishes - doing everything that goes with that
* Process now uses a linked list for associated file descriptors.Alexis2112009-10-131-12/+6
|
* Tasking now works with linked listsAlexis2112009-10-111-1/+1
|
* Exiting from a thread now works without hanging everything.Alexis2112009-10-091-4/+5
|
* The kernel shell is now in an independent class, KernelShell::Alexis2112009-10-021-0/+1
|
* Class for file descriptors introduced : File. Not used yet.Alexis2112009-09-131-1/+21
|
* Ok, exception handling happens in Thread::.Alexis2112009-09-061-0/+1
|
* Maybee some changesAlexis2112009-09-021-1/+1
|
* We now have complete support for keybord, IN UTF-8 !!Alexis2112009-08-311-1/+10
|
* The Melon kernel now has support for simple multitaskingAlexis2112009-08-291-0/+85