summaryrefslogtreecommitdiff
path: root/Source/Kernel/TaskManager
Commit message (Collapse)AuthorAgeFilesLines
* More work on syscallsAlexis2112009-10-184-9/+54
|
* Re-organized everythingAlexis2112009-10-184-6/+5
|
* Loading binaries now is done through a much more unified interface.Alexis2112009-10-183-2/+29
|
* Melon now loads a simple ASM application out of the ramfsAlexis2112009-10-175-16/+4
| | | | The format is very simple, but an ELF loader is planned.
* User mode code can now run !Alexis2112009-10-174-7/+73
| | | | | | 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 thread now has a kernel stack and an user stackAlexis2112009-10-173-19/+30
|
* Each Process now has a user heap.Alexis2112009-10-174-19/+24
| | | | It will be used for transferring data from kernel to userland.
* We now use a temporary stack in task management for :Alexis2112009-10-164-21/+38
| | | | | - deleting current thread whe it finishes - doing everything that goes with that
* Process now uses a linked list for associated file descriptors.Alexis2112009-10-132-13/+8
|
* Heap class now uses a MutexAlexis2112009-10-131-2/+4
|
* 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-115-60/+76
|
* Added a single linked list simple class (SimpleList)Alexis2112009-10-111-13/+10
|
* Added a simple random generatorAlexis2112009-10-111-0/+1
|
* Exiting from a thread now works without hanging everything.Alexis2112009-10-094-6/+39
|
* The kernel shell is now in an independent class, KernelShell::Alexis2112009-10-024-13/+18
|
* We now have scrollable virtual terminals !Alexis2112009-09-202-2/+2
|
* Changes in mutexes, vectors and VTs :Alexis2112009-09-183-9/+21
| | | | | | mutexes now use the atomic_exchang defined in Task.wtf.asm some vector methods are now declared const VTs now can display (decimal) 64bit integers
* Added stuff to WChar and String classes.Alexis2112009-09-161-1/+1
| | | | | | | WChar can now decode utf16 and utf32, and encode utf8 and utf32. String now has functions append(), concat(), compare() and affect() with different prototypes for char[] arrays, so that we can use it as well with utf8, utf16 and utf32.
* Class for file descriptors introduced : File. Not used yet.Alexis2112009-09-132-1/+26
|
* Ok, exception handling happens in Thread::.Alexis2112009-09-063-0/+42
|
* Bug correctionAlexis2112009-09-063-7/+1
|
* Maybee some changesAlexis2112009-09-025-11/+17
|
* We now have complete support for keybord, IN UTF-8 !!Alexis2112009-08-316-5/+64
|
* We now have (partial) support for UTF-8.Alexis2112009-08-291-1/+1
|
* The Melon kernel now has support for simple multitaskingAlexis2112009-08-297-0/+501