Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More work on syscalls | Alexis211 | 2009-10-18 | 4 | -9/+54 |
| | |||||
* | Re-organized everything | Alexis211 | 2009-10-18 | 4 | -6/+5 |
| | |||||
* | Loading binaries now is done through a much more unified interface. | Alexis211 | 2009-10-18 | 3 | -2/+29 |
| | |||||
* | Melon now loads a simple ASM application out of the ramfs | Alexis211 | 2009-10-17 | 5 | -16/+4 |
| | | | | The format is very simple, but an ELF loader is planned. | ||||
* | User mode code can now run ! | Alexis211 | 2009-10-17 | 4 | -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 stack | Alexis211 | 2009-10-17 | 3 | -19/+30 |
| | |||||
* | Each Process now has a user heap. | Alexis211 | 2009-10-17 | 4 | -19/+24 |
| | | | | It will be used for transferring data from kernel to userland. | ||||
* | We now use a temporary stack in task management for : | Alexis211 | 2009-10-16 | 4 | -21/+38 |
| | | | | | - 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 | 2 | -13/+8 |
| | |||||
* | Heap class now uses a Mutex | Alexis211 | 2009-10-13 | 1 | -2/+4 |
| | |||||
* | SimpleList now implements removeOnce(const T& value); | Alexis211 | 2009-10-11 | 1 | -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 ;D | Alexis211 | 2009-10-11 | 1 | -6/+6 |
| | |||||
* | Tasking now works with linked lists | Alexis211 | 2009-10-11 | 5 | -60/+76 |
| | |||||
* | Added a single linked list simple class (SimpleList) | Alexis211 | 2009-10-11 | 1 | -13/+10 |
| | |||||
* | Added a simple random generator | Alexis211 | 2009-10-11 | 1 | -0/+1 |
| | |||||
* | Exiting from a thread now works without hanging everything. | Alexis211 | 2009-10-09 | 4 | -6/+39 |
| | |||||
* | The kernel shell is now in an independent class, KernelShell:: | Alexis211 | 2009-10-02 | 4 | -13/+18 |
| | |||||
* | We now have scrollable virtual terminals ! | Alexis211 | 2009-09-20 | 2 | -2/+2 |
| | |||||
* | Changes in mutexes, vectors and VTs : | Alexis211 | 2009-09-18 | 3 | -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. | Alexis211 | 2009-09-16 | 1 | -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. | Alexis211 | 2009-09-13 | 2 | -1/+26 |
| | |||||
* | Ok, exception handling happens in Thread::. | Alexis211 | 2009-09-06 | 3 | -0/+42 |
| | |||||
* | Bug correction | Alexis211 | 2009-09-06 | 3 | -7/+1 |
| | |||||
* | Maybee some changes | Alexis211 | 2009-09-02 | 5 | -11/+17 |
| | |||||
* | We now have complete support for keybord, IN UTF-8 !! | Alexis211 | 2009-08-31 | 6 | -5/+64 |
| | |||||
* | We now have (partial) support for UTF-8. | Alexis211 | 2009-08-29 | 1 | -1/+1 |
| | |||||
* | The Melon kernel now has support for simple multitasking | Alexis211 | 2009-08-29 | 7 | -0/+501 |