summaryrefslogtreecommitdiff
path: root/Source/Kernel/TaskManager/Task.ns.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a bug with paging/tasking.Alexis2112009-10-231-4/+2
|
* Re-organized everythingAlexis2112009-10-181-1/+0
|
* Melon now loads a simple ASM application out of the ramfsAlexis2112009-10-171-1/+1
| | | | The format is very simple, but an ELF loader is planned.
* User mode code can now run !Alexis2112009-10-171-1/+4
| | | | | | We have a sample process (hardcoded in ASM in Task.wtf.asm) that displays a's and sleeps 20ms, but it's on a hidden virtual terminal so it's useless :D
* Each Process now has a user heap.Alexis2112009-10-171-1/+1
| | | | It will be used for transferring data from kernel to userland.
* We now use a temporary stack in task management for :Alexis2112009-10-161-18/+34
| | | | | - deleting current thread whe it finishes - doing everything that goes with that
* SimpleList now implements removeOnce(const T& value);Alexis2112009-10-111-21/+3
| | | | | This methods searches for value in the list and removes it from the list. Only the first occurrence will be removed.
* Nothing, really ;DAlexis2112009-10-111-6/+6
|
* Tasking now works with linked listsAlexis2112009-10-111-55/+70
|
* Added a single linked list simple class (SimpleList)Alexis2112009-10-111-13/+10
|
* Exiting from a thread now works without hanging everything.Alexis2112009-10-091-0/+31
|
* The kernel shell is now in an independent class, KernelShell::Alexis2112009-10-021-2/+2
|
* Bug correctionAlexis2112009-09-061-1/+1
|
* Maybee some changesAlexis2112009-09-021-1/+1
|
* We now have complete support for keybord, IN UTF-8 !!Alexis2112009-08-311-2/+4
|
* We now have (partial) support for UTF-8.Alexis2112009-08-291-1/+1
|
* The Melon kernel now has support for simple multitaskingAlexis2112009-08-291-0/+136