Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add pckbd driver. | Alex Auvolat | 2015-03-11 | 1 | -1/+3 |
| | |||||
* | Begin work on GIP (Graphics Initiation Protocol) | Alex Auvolat | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | Fix process exiting. | Alex Auvolat | 2015-03-11 | 1 | -8/+15 |
| | |||||
* | Add mutex to pciide driver (fixes some stuff) | Alex Auvolat | 2015-03-10 | 1 | -0/+2 |
| | |||||
* | Things are happenning ; lots of bugs. | Alex Auvolat | 2015-03-10 | 1 | -1/+1 |
| | |||||
* | Pass more information to FS driver on some ops (TODO bugcheck). | Alex Auvolat | 2015-03-10 | 1 | -0/+1 |
| | |||||
* | VESA mode setting ; displays kogata logo! | Alex Auvolat | 2015-03-09 | 1 | -1/+4 |
| | |||||
* | Implement V86 monitor and VESA mode detection. | Alex Auvolat | 2015-03-09 | 3 | -2/+4 |
| | |||||
* | Remove kernel region pf handlers ; fix forget-to-zero-out bug. | Alex Auvolat | 2015-03-09 | 4 | -25/+22 |
| | |||||
* | Partial implement VFS pager (enough for ISO9660!) | Alex Auvolat | 2015-03-09 | 4 | -4/+17 |
| | | | | Also add some debugging facilities (especially stack trace). | ||||
* | Nullfs now uses pager. | Alex Auvolat | 2015-03-09 | 1 | -3/+6 |
| | |||||
* | Implement select ; add two tests for channels. | Alex Auvolat | 2015-03-08 | 2 | -33/+68 |
| | |||||
* | Add two entropy sources. Warning: prng is not secure in any way, I have no ↵ | Alex Auvolat | 2015-03-08 | 3 | -3/+14 |
| | | | | knowlege of such things. | ||||
* | Add PRNG | Alex Auvolat | 2015-03-08 | 2 | -0/+48 |
| | |||||
* | Implement wait and exec. | Alex Auvolat | 2015-03-07 | 1 | -1/+1 |
| | |||||
* | Update readme ; change time-related function names. | Alex Auvolat | 2015-03-07 | 2 | -4/+4 |
| | |||||
* | Process exiting & thread termination. IMPORTANT NOTE FOLLOWS. | Alex Auvolat | 2015-03-04 | 3 | -23/+111 |
| | | | | | | | | 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. | ||||
* | Implement process termination and cleaning up (not completely though) | Alex Auvolat | 2015-03-03 | 2 | -2/+54 |
| | |||||
* | More uses of free_some_memory() | Alex Auvolat | 2015-03-02 | 2 | -3/+17 |
| | |||||
* | No lazy allocation of kernel memory. Placeholder for pmem freeing routine. | Alex Auvolat | 2015-03-02 | 4 | -12/+56 |
| | |||||
* | Setup critical section management for parts that must not be interrupted. | Alex Auvolat | 2015-03-02 | 3 | -29/+38 |
| | |||||
* | Fix calculations in iso9660_fh_read | Alex Auvolat | 2015-02-24 | 1 | -16/+0 |
| | |||||
* | Complete ISO9660 impl ; some strange wtf is going on. | Alex Auvolat | 2015-02-24 | 1 | -0/+16 |
| | |||||
* | Fix a bug (dispose in pciide should not exist) | Alex Auvolat | 2015-02-24 | 1 | -1/+1 |
| | |||||
* | Change VFS a bit : the root directory of a fs is now a pointer. Fix tests. | Alex Auvolat | 2015-02-24 | 1 | -4/+4 |
| | |||||
* | Make way for ISO 9660 driver. | Alex Auvolat | 2015-02-24 | 1 | -9/+118 |
| | |||||
* | Add PCI IDE driver (only PIO mode, no DMA yet.) | Alex Auvolat | 2015-02-24 | 2 | -0/+3 |
| | |||||
* | PCI enumeration ; rename dev:/ to io:/ | Alex Auvolat | 2015-02-24 | 1 | -11/+16 |
| | |||||
* | Change mode of operation for mmap_file (see readme) | Alex Auvolat | 2015-02-20 | 2 | -10/+6 |
| | |||||
* | Think a bit ; ioctls only on open file descriptors. | Alex Auvolat | 2015-02-20 | 1 | -15/+2 |
| | |||||
* | Add kernel worker threads for handling various tasks (eg. interrupts) | Alex Auvolat | 2015-02-19 | 3 | -6/+132 |
| | |||||
* | Userland test infrastructure | Alex Auvolat | 2015-02-19 | 1 | -1/+1 |
| | |||||
* | Several things : | Alex Auvolat | 2015-02-19 | 2 | -3/+3 |
| | | | | | | | - 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) | ||||
* | Fix mchmap. Lesson : invalid pointer dereferences happen! with unexpected ↵ | Alex Auvolat | 2015-02-14 | 1 | -7/+9 |
| | | | | results. | ||||
* | Many things : | Alex Auvolat | 2015-02-14 | 5 | -57/+33 |
| | | | | | | - fix context switching (it actually worked only because of optimizations!) - complete mchmap implementation - adjust elf parser to load binaries correctly even without FM_MMAP | ||||
* | Add first btree test ; fix first btree test. | Alex Auvolat | 2015-02-14 | 2 | -3/+3 |
| | |||||
* | Rearrange testing architecture : just type 'make run_tests' | Alex Auvolat | 2015-02-14 | 2 | -190/+22 |
| | |||||
* | Change hashtbl memory freeing method | Alex Auvolat | 2015-02-14 | 1 | -4/+4 |
| | |||||
* | Begin implementation of syscalls. | Alex Auvolat | 2015-02-13 | 3 | -7/+10 |
| | |||||
* | Implement ELF loading ; arrange so that user processes run. | Alex Auvolat | 2015-02-13 | 3 | -14/+29 |
| | |||||
* | Reorganize code in preparation for user apps. | Alex Auvolat | 2015-02-13 | 1 | -4/+2 |
| | |||||
* | Implement some handling of user stuff... | Alex Auvolat | 2015-02-13 | 3 | -7/+12 |
| | |||||
* | Implement switching to usermode. | Alex Auvolat | 2015-02-13 | 2 | -2/+24 |
| | |||||
* | Add stubs for process-related functions. | Alex Auvolat | 2015-02-13 | 1 | -5/+13 |
| | |||||
* | Prepare for user memory management and usermode code | Alex Auvolat | 2015-02-13 | 3 | -46/+78 |
| | |||||
* | Isolate cmdline test ; rename tests. | Alex Auvolat | 2015-02-13 | 1 | -16/+27 |
| | |||||
* | Cleanup output. | Alex Auvolat | 2015-02-13 | 3 | -50/+76 |
| | |||||
* | Begin implementation of nullfs. | Alex Auvolat | 2015-02-12 | 1 | -3/+1 |
| | |||||
* | Adjust nullfs header | Alex Auvolat | 2015-02-12 | 1 | -2/+10 |
| | |||||
* | kmain.c is kind of an example of how the VFS should be used from the outside... | Alex Auvolat | 2015-02-12 | 1 | -13/+18 |
| |