Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix sme warnings... | Alex Auvolat | 2016-07-14 | 3 | -20/+20 |
| | |||||
* | 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 write of null length to channel ; fix cat. | Alex Auvolat | 2015-03-14 | 1 | -0/+4 |
| | |||||
* | Fix blocking channel && channel write on circular-overflow. (see ipc.c) | Alex Auvolat | 2015-03-14 | 1 | -14/+41 |
| | |||||
* | Fix region allocator (see changes in region.c!) ; debug spam control. | Alex Auvolat | 2015-03-14 | 3 | -13/+10 |
| | |||||
* | Fix a bug: malloc() with wrong size | Alex Auvolat | 2015-03-14 | 2 | -3/+7 |
| | |||||
* | Add mutexes everywhere ; spam debug log (sorry) | Alex Auvolat | 2015-03-14 | 4 | -26/+83 |
| | |||||
* | 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 | 2 | -12/+12 |
| | |||||
* | Change thread waiting technology. Slower but does not do crappy things like ↵ | Alex Auvolat | 2015-03-11 | 1 | -40/+40 |
| | | | | malloc at impractical places. | ||||
* | Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵ | Alex Auvolat | 2015-03-11 | 1 | -3/+3 |
| | | | | waiters. | ||||
* | Clear screen from GIP client (in login) | Alex Auvolat | 2015-03-11 | 1 | -1/+5 |
| | |||||
* | 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 | 4 | -10/+29 |
| | |||||
* | Pass more information to FS driver on some ops (TODO bugcheck). | Alex Auvolat | 2015-03-10 | 3 | -54/+60 |
| | |||||
* | Add simple shared memory facility to IPC (no syscall yet) | Alex Auvolat | 2015-03-10 | 4 | -4/+86 |
| | |||||
* | VESA mode setting ; displays kogata logo! | Alex Auvolat | 2015-03-09 | 1 | -13/+58 |
| | |||||
* | Implement V86 monitor and VESA mode detection. | Alex Auvolat | 2015-03-09 | 1 | -0/+2 |
| | |||||
* | Finish implementation of VFS pager. | Alex Auvolat | 2015-03-09 | 1 | -24/+66 |
| | |||||
* | Remove kernel region pf handlers ; fix forget-to-zero-out bug. | Alex Auvolat | 2015-03-09 | 2 | -6/+12 |
| | |||||
* | Partial implement VFS pager (enough for ISO9660!) | Alex Auvolat | 2015-03-09 | 5 | -37/+130 |
| | | | | Also add some debugging facilities (especially stack trace). | ||||
* | Nullfs now uses pager. | Alex Auvolat | 2015-03-09 | 4 | -104/+219 |
| | |||||
* | Add pager interface ; implement basic functionnality to replace private maps. | Alex Auvolat | 2015-03-09 | 2 | -46/+230 |
| | |||||
* | Require all fs_handle_t objects to point to a node. | Alex Auvolat | 2015-03-09 | 3 | -40/+73 |
| | |||||
* | Implement select ; add two tests for channels. | Alex Auvolat | 2015-03-08 | 4 | -1/+86 |
| | |||||
* | Implement missing syscalls. | Alex Auvolat | 2015-03-08 | 1 | -0/+83 |
| | |||||
* | Tokens. | Alex Auvolat | 2015-03-08 | 1 | -0/+114 |
| | |||||
* | Change prototypes for read, write, readdir, close ; implement blocking IPC. | Alex Auvolat | 2015-03-08 | 3 | -62/+79 |
| | |||||
* | Channels. | Alex Auvolat | 2015-03-08 | 1 | -0/+162 |
| | |||||
* | Change VFS a bit in preparation for IPC code : ... | Alex Auvolat | 2015-03-08 | 1 | -11/+13 |
| | | | | | Handles now have a copy of data and ops, and may reference a null node in the case of an IPC channel. | ||||
* | Implement wait and exec. | Alex Auvolat | 2015-03-07 | 2 | -5/+190 |
| | |||||
* | Implement some missing syscalls. | Alex Auvolat | 2015-03-07 | 2 | -21/+205 |
| | |||||
* | 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 | 2 | -41/+66 |
| | | | | | | | | 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 | 2 | -25/+137 |
| | |||||
* | Add prototypes for process management... | Alex Auvolat | 2015-03-03 | 2 | -10/+34 |
| | |||||
* | Change VFS interface : handles no longer visible to underlying FS. | Alex Auvolat | 2015-03-02 | 4 | -127/+68 |
| | |||||
* | Fix VFS reference counting. | Alex Auvolat | 2015-03-02 | 1 | -17/+16 |
| | |||||
* | 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 |
| | |||||
* | Implement fs_subfs (it's simple, really) ; add placeholders for more syscalls | Alex Auvolat | 2015-02-24 | 3 | -2/+118 |
| | |||||
* | Change VFS a bit : the root directory of a fs is now a pointer. Fix tests. | Alex Auvolat | 2015-02-24 | 2 | -42/+53 |
| | |||||
* | Change mode of operation for mmap_file (see readme) | Alex Auvolat | 2015-02-20 | 3 | -20/+30 |
| | |||||
* | Think a bit ; ioctls only on open file descriptors. | Alex Auvolat | 2015-02-20 | 3 | -44/+6 |
| | |||||
* | Add kernel worker threads for handling various tasks (eg. interrupts) | Alex Auvolat | 2015-02-19 | 1 | -0/+6 |
| |