Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mouse cursor! | Alex Auvolat | 2017-05-03 | 1 | -1/+33 |
| | |||||
* | Fix sme warnings... | Alex Auvolat | 2016-07-14 | 1 | -9/+9 |
| | |||||
* | Add delta wrt. function in stack dump | Alex Auvolat | 2016-07-13 | 1 | -1/+1 |
| | |||||
* | Begin implement escape sequence handling in terminal. | Alex Auvolat | 2015-03-14 | 1 | -0/+2 |
| | |||||
* | Fix region allocator (see changes in region.c!) ; debug spam control. | Alex Auvolat | 2015-03-14 | 1 | -3/+0 |
| | |||||
* | Fix a bug: malloc() with wrong size | Alex Auvolat | 2015-03-14 | 1 | -0/+2 |
| | |||||
* | Add mutexes everywhere ; spam debug log (sorry) | Alex Auvolat | 2015-03-14 | 1 | -25/+41 |
| | |||||
* | Add missing mutex-locking in procesc.c ; discovered design fault somewhere. | Alex Auvolat | 2015-03-13 | 1 | -12/+78 |
| | |||||
* | Shell begins to be usefull. | Alex Auvolat | 2015-03-13 | 1 | -2/+2 |
| | |||||
* | Add better stack tracing technology (now uses kernel memory map!) | Alex Auvolat | 2015-03-11 | 1 | -2/+2 |
| | |||||
* | Begin work on GIP (Graphics Initiation Protocol) | Alex Auvolat | 2015-03-11 | 1 | -2/+2 |
| | |||||
* | Fix process exiting. | Alex Auvolat | 2015-03-11 | 1 | -27/+28 |
| | |||||
* | Things are happenning ; lots of bugs. | Alex Auvolat | 2015-03-10 | 1 | -3/+18 |
| | |||||
* | Add mk_shm syscall ; replace get_mode by fctl. | Alex Auvolat | 2015-03-10 | 1 | -2/+2 |
| | |||||
* | Add simple shared memory facility to IPC (no syscall yet) | Alex Auvolat | 2015-03-10 | 1 | -1/+1 |
| | |||||
* | Remove kernel region pf handlers ; fix forget-to-zero-out bug. | Alex Auvolat | 2015-03-09 | 1 | -2/+8 |
| | |||||
* | Partial implement VFS pager (enough for ISO9660!) | Alex Auvolat | 2015-03-09 | 1 | -4/+4 |
| | | | | Also add some debugging facilities (especially stack trace). | ||||
* | Nullfs now uses pager. | Alex Auvolat | 2015-03-09 | 1 | -0/+18 |
| | |||||
* | Add pager interface ; implement basic functionnality to replace private maps. | Alex Auvolat | 2015-03-09 | 1 | -46/+47 |
| | |||||
* | Implement wait and exec. | Alex Auvolat | 2015-03-07 | 1 | -1/+122 |
| | |||||
* | Implement some missing syscalls. | Alex Auvolat | 2015-03-07 | 1 | -1/+32 |
| | |||||
* | Fix stupid forget-to-unreference bug. | Alex Auvolat | 2015-03-04 | 1 | -1/+5 |
| | |||||
* | Process exiting & thread termination. IMPORTANT NOTE FOLLOWS. | Alex Auvolat | 2015-03-04 | 1 | -40/+65 |
| | | | | | | | | Threads may now communicate via wait_on(void* ressource) and resume_on (void* ressource). Previous pause() is replaced by wait_on(current_thread) and resume(thread) by resume_on(thread). wait_on(x) may return false, indicating that the reason for returning is NOT that resume_on(x) was called but something else happenned. Typically false indicates that the curent thread is being killed and must terminate its kernel-land processing as soon as possible. | ||||
* | TY tito. | Alex Auvolat | 2015-03-03 | 1 | -0/+1 |
| | |||||
* | Implement process termination and cleaning up (not completely though) | Alex Auvolat | 2015-03-03 | 1 | -23/+135 |
| | |||||
* | Add prototypes for process management... | Alex Auvolat | 2015-03-03 | 1 | -5/+34 |
| | |||||
* | Change VFS interface : handles no longer visible to underlying FS. | Alex Auvolat | 2015-03-02 | 1 | -2/+3 |
| | |||||
* | More uses of free_some_memory() | Alex Auvolat | 2015-03-02 | 1 | -4/+3 |
| | |||||
* | Setup critical section management for parts that must not be interrupted. | Alex Auvolat | 2015-03-02 | 1 | -1/+1 |
| | |||||
* | Change mode of operation for mmap_file (see readme) | Alex Auvolat | 2015-02-20 | 1 | -19/+16 |
| | |||||
* | Implement basic syscalls... | Alex Auvolat | 2015-02-19 | 1 | -1/+31 |
| | |||||
* | Implement userspace malloc | Alex Auvolat | 2015-02-19 | 1 | -3/+6 |
| | |||||
* | Fix mchmap. Lesson : invalid pointer dereferences happen! with unexpected ↵ | Alex Auvolat | 2015-02-14 | 1 | -1/+1 |
| | | | | results. | ||||
* | Many things : | Alex Auvolat | 2015-02-14 | 1 | -3/+40 |
| | | | | | | - fix context switching (it actually worked only because of optimizations!) - complete mchmap implementation - adjust elf parser to load binaries correctly even without FM_MMAP | ||||
* | Use btrees to find memory regions. | Alex Auvolat | 2015-02-14 | 1 | -14/+32 |
| | |||||
* | Add btree_remove_v to selectively remove bindings that have a key | Alex Auvolat | 2015-02-14 | 1 | -0/+1 |
| | |||||
* | Change hashtbl memory freeing method | Alex Auvolat | 2015-02-14 | 1 | -2/+2 |
| | |||||
* | Change a bit of structure | Alex Auvolat | 2015-02-14 | 1 | -19/+0 |
| | |||||
* | Begin implementation of syscalls. | Alex Auvolat | 2015-02-13 | 1 | -1/+25 |
| | |||||
* | Implement ELF loading ; arrange so that user processes run. | Alex Auvolat | 2015-02-13 | 1 | -0/+8 |
| | |||||
* | Implement some handling of user stuff... | Alex Auvolat | 2015-02-13 | 1 | -37/+145 |
| | |||||
* | Implement switching to usermode. | Alex Auvolat | 2015-02-13 | 1 | -4/+42 |
| | |||||
* | Add stubs for process-related functions. | Alex Auvolat | 2015-02-13 | 1 | -1/+124 |
| | |||||
* | Start work on filesystems. | Alex Auvolat | 2015-02-09 | 1 | -20/+3 |
| | |||||
* | Reorganize all. | Alex Auvolat | 2015-02-09 | 1 | -0/+30 |