Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add keyboard handling code. New font thanks to Muazzam from OSDev! | Alex Auvolat | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | Add better stack tracing technology (now uses kernel memory map!) | Alex Auvolat | 2015-03-11 | 1 | -11/+5 |
| | |||||
* | Change thread waiting technology. Slower but does not do crappy things like ↵ | Alex Auvolat | 2015-03-11 | 1 | -1/+1 |
| | | | | malloc at impractical places. | ||||
* | Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵ | Alex Auvolat | 2015-03-11 | 1 | -8/+9 |
| | | | | waiters. | ||||
* | Begin work on GIP (Graphics Initiation Protocol) | Alex Auvolat | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | Things are happenning ; lots of bugs. | Alex Auvolat | 2015-03-10 | 1 | -1/+1 |
| | |||||
* | Partial implement VFS pager (enough for ISO9660!) | Alex Auvolat | 2015-03-09 | 1 | -1/+13 |
| | | | | Also add some debugging facilities (especially stack trace). | ||||
* | Implement select ; add two tests for channels. | Alex Auvolat | 2015-03-08 | 1 | -5/+10 |
| | |||||
* | Process exiting & thread termination. IMPORTANT NOTE FOLLOWS. | Alex Auvolat | 2015-03-04 | 1 | -0/+15 |
| | | | | | | | | 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. | ||||
* | Setup critical section management for parts that must not be interrupted. | Alex Auvolat | 2015-03-02 | 1 | -0/+4 |
| | |||||
* | Add PCI IDE driver (only PIO mode, no DMA yet.) | Alex Auvolat | 2015-02-24 | 1 | -0/+1 |
| | |||||
* | Several things : | Alex Auvolat | 2015-02-19 | 1 | -1/+1 |
| | | | | | | | - disambiguate syscall.h : kernel syscall.h moved to sct.h - fix btree_remove_v !! (munmap fucked up stuff before) - make nullfs's directory listing non-exclusive (it actually copies the listing on open() and readdir()'s from that copy) | ||||
* | Begin implementation of syscalls. | Alex Auvolat | 2015-02-13 | 1 | -5/+5 |
| | |||||
* | Implement some handling of user stuff... | Alex Auvolat | 2015-02-13 | 1 | -4/+9 |
| | |||||
* | Cleanup output. | Alex Auvolat | 2015-02-13 | 1 | -2/+1 |
| | |||||
* | Reorganize all. | Alex Auvolat | 2015-02-09 | 1 | -0/+253 |