summaryrefslogtreecommitdiff
path: root/Source/Kernel/TaskManager/Process.class.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Made status bar into a namespace, and added functionnalitiesAlexis2112009-12-211-0/+2
|
* Introduced PaperWork : our init/login manager.Alexis2112009-11-081-113/+0
| | | | Login with user=root;pass=admin or user=alexis211;pass=iamgod
* More work on syscalls : userland applications can run other apps.Alexis2112009-10-241-3/+66
|
* More work on userland syscalls : Files are implemented.Alexis2112009-10-241-19/+23
| | | | TextFile now is a common (= kernel and userland) library.
* More work on syscalls and shellAlexis2112009-10-231-0/+1
|
* More work on syscalls and shellAlexis2112009-10-231-4/+20
|
* Nothing reallAlexis2112009-10-231-1/+2
|
* Started working on user managmentAlexis2112009-10-211-0/+10
|
* More workAlexis2112009-10-211-6/+15
|
* Implemented static syscalls, specific to a class and not an object.Alexis2112009-10-201-0/+5
|
* We now have call tables for ressources.Alexis2112009-10-201-5/+9
| | | | instead of adding calls to ressource in the constructor.
* Heap included as well in userland libraryAlexis2112009-10-181-0/+9
|
* 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