Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Nothing, really | Alexis211 | 2009-10-17 | 2 | -2/+3 |
| | |||||
* | Each thread now has a kernel stack and an user stack | Alexis211 | 2009-10-17 | 6 | -23/+36 |
| | |||||
* | Merge branch 'heap_class' | Alexis211 | 2009-10-17 | 6 | -20/+25 |
|\ | | | | | | | | | Conflicts: Source/Kernel/Melon.ke | ||||
| * | Each Process now has a user heap. | Alexis211 | 2009-10-17 | 6 | -20/+25 |
| | | | | | | | | It will be used for transferring data from kernel to userland. | ||||
* | | Merge branch 'heap_class' | Alexis211 | 2009-10-16 | 12 | -47/+96 |
|\| | | | | | | | | | Conflicts: Source/Kernel/Melon.ke | ||||
| * | We now use a temporary stack in task management for : | Alexis211 | 2009-10-16 | 8 | -26/+44 |
| | | | | | | | | | | - deleting current thread whe it finishes - doing everything that goes with that | ||||
| * | Process now uses a linked list for associated file descriptors. | Alexis211 | 2009-10-13 | 3 | -13/+8 |
| | | |||||
| * | Heap class now uses a Mutex | Alexis211 | 2009-10-13 | 4 | -9/+45 |
| | | |||||
* | | Merge branch 'heap_class' | Alexis211 | 2009-10-13 | 9 | -247/+332 |
|\| | | | | | | | | | Conflicts: Source/Kernel/Melon.ke | ||||
| * | Heap is now in a separate class, Heap. | Alexis211 | 2009-10-13 | 9 | -247/+332 |
| | | |||||
* | | Nothing, really | Alexis211 | 2009-10-13 | 2 | -1/+2 |
|/ | |||||
* | SimpleList now implements removeOnce(const T& value); | Alexis211 | 2009-10-11 | 5 | -23/+27 |
| | | | | | This methods searches for value in the list and removes it from the list. Only the first occurrence will be removed. | ||||
* | Nothing, really ;D | Alexis211 | 2009-10-11 | 2 | -6/+6 |
| | |||||
* | Tasking now works with linked lists | Alexis211 | 2009-10-11 | 15 | -81/+102 |
| | |||||
* | Added a single linked list simple class (SimpleList) | Alexis211 | 2009-10-11 | 4 | -14/+65 |
| | |||||
* | Added a simple random generator | Alexis211 | 2009-10-11 | 8 | -5/+35 |
| | |||||
* | Added a nice animation for the melon logo at boot | Alexis211 | 2009-10-10 | 2 | -6/+45 |
| | |||||
* | Nothing, really | Alexis211 | 2009-10-09 | 4 | -60/+62 |
| | |||||
* | Exiting from a thread now works without hanging everything. | Alexis211 | 2009-10-09 | 10 | -13/+49 |
| | |||||
* | The kernel shell is now in an independent class, KernelShell:: | Alexis211 | 2009-10-02 | 15 | -181/+351 |
| | |||||
* | Nothing intresting | Alexis211 | 2009-09-26 | 12 | -20/+90 |
| | |||||
* | Implemented FileVT. | Alexis211 | 2009-09-20 | 7 | -3/+90 |
| | |||||
* | Implemented PipeVT. | Alexis211 | 2009-09-20 | 7 | -1/+58 |
| | |||||
* | Added some screenshots :) | Alexis211 | 2009-09-20 | 3 | -2/+2 |
| | |||||
* | Keymaps are now loaded from ramfs. | Alexis211 | 2009-09-20 | 10 | -10/+93 |
| | |||||
* | Merge branch 'advt' | Alexis211 | 2009-09-20 | 25 | -135/+319 |
|\ | | | | | | | | | | | | | Conflicts: Source/Kernel/Melon.ke Source/Kernel/VTManager/SimpleVT.class.cpp Source/Kernel/VTManager/VirtualTerminal.proto.h | ||||
| * | We now have scrollable virtual terminals ! | Alexis211 | 2009-09-20 | 26 | -139/+322 |
| | | |||||
* | | Nothing, really. | Alexis211 | 2009-09-20 | 3 | -5/+4 |
|/ | |||||
* | Oops... TextFile.class.* wasn't included in previous commit... | Alexis211 | 2009-09-20 | 2 | -0/+42 |
| | |||||
* | Lot of changes. Log now go to /System/Logs/*.log | Alexis211 | 2009-09-19 | 13 | -48/+135 |
| | |||||
* | Implemented ByteArray and wf command. | Alexis211 | 2009-09-19 | 8 | -3/+147 |
| | |||||
* | END. | Alexis211 | 2009-09-19 | 4 | -26/+8 |
| | |||||
* | More work | Alexis211 | 2009-09-19 | 4 | -34/+10 |
| | |||||
* | Started conversion from String to BasicString<WChar> | Alexis211 | 2009-09-19 | 5 | -83/+234 |
| | |||||
* | Changes in mutexes, vectors and VTs : | Alexis211 | 2009-09-18 | 14 | -32/+52 |
| | | | | | | 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 | ||||
* | Color scheme is now configured in Config.h | Alexis211 | 2009-09-17 | 7 | -15/+22 |
| | |||||
* | Added stuff to WChar and String classes. | Alexis211 | 2009-09-16 | 8 | -50/+145 |
| | | | | | | | 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. | ||||
* | cat command now uses the File class. | Alexis211 | 2009-09-15 | 6 | -25/+32 |
| | |||||
* | Added some screenshots and modified some stuff. | Alexis211 | 2009-09-15 | 2 | -4/+4 |
| | |||||
* | Added a few commands to kernel shell (rm && mkdir). | Alexis211 | 2009-09-14 | 7 | -15/+41 |
| | | | | Also fixed a bug in VFS::remove. | ||||
* | Class for file descriptors introduced : File. Not used yet. | Alexis211 | 2009-09-13 | 12 | -8/+338 |
| | |||||
* | Changed welcome text and added a few error messages. | Alexis211 | 2009-09-13 | 3 | -9/+26 |
| | |||||
* | Merge branch 'vfs' | Alexis211 | 2009-09-13 | 21 | -61/+634 |
|\ | |||||
| * | We now can navigate in the VFS using the integrated shell. | Alexis211 | 2009-09-13 | 16 | -98/+216 |
| | | |||||
| * | Kernel can now load an Initrd. | Alexis211 | 2009-09-13 | 6 | -7/+82 |
| | | |||||
| * | RamFS creatable but not loadable yet | Alexis211 | 2009-09-13 | 8 | -14/+25 |
| | | |||||
| * | Ram file system seems to work \o/ | Alexis211 | 2009-09-13 | 20 | -118/+317 |
| | | |||||
| * | Created some files | Alexis211 | 2009-09-13 | 11 | -2/+85 |
| | | |||||
| * | Started working on the VFS | Alexis211 | 2009-09-13 | 2 | -0/+87 |
| | | |||||
* | | Nothing, really | Alexis211 | 2009-09-13 | 1 | -1/+1 |
|/ |